package.json에 start를 "start" : "node server/app.js"에서 "start" : "node --inspect-brk server/app.js"로 변경 이후 VS code에서 break point를 걸거나(= 코드 숫자 왼쪽에 클릭하면 빨간원이 생기면 브레이크 포인트가 걸린 것) console.log()를 해 놓으면 서버를 킨 후(npm start 혹은 그냥 콘솔로 node --inspect-brk server/app.js 실행) 브라우저의 inspect에서 초록색 마름모를 클릭해 디버거 모드로 들어갈 수 있다.