728x90 debugging1 VSCode로 Express 앱 디버깅하기 package.json 설정 "scripts": { "start": "node ./index.js", "debug": "nodemon --inspect ./app.js" } launch.json 설정 { "version": "0.2.0", "configurations": [ { "type": "node", "request": "attach", "name": "Node: Nodemon", "processId": "${command:PickProcess}", "restart": true, "protocol": "inspector", }, ] } debug 모드로 실행 npm run debug nodemon --inspect ./app.js로 끝나는 pid 선택 참고 https://github.com/Micr.. 2020. 10. 22. 이전 1 다음 728x90