본문 바로가기
Programming/Javascript

VSCode로 Express 앱 디버깅하기

by peter paak 2020. 10. 22.
728x90
  1. package.json 설정
"scripts": {
    "start": "node ./index.js",
    "debug": "nodemon --inspect ./app.js"
}
  1. launch.json 설정
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "attach",
            "name": "Node: Nodemon",
            "processId": "${command:PickProcess}",
            "restart": true,
            "protocol": "inspector",
        },
    ]
}
  1. debug 모드로 실행
npm run debug
  1. nodemon --inspect ./app.js로 끝나는 pid 선택

참고

https://github.com/Microsoft/vscode-recipes/tree/master/nodemon

728x90