728x90
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/Microsoft/vscode-recipes/tree/master/nodemon
728x90