Today I Learned

[Visual Studio Code] Node.js 디버깅 본문

Node.js

[Visual Studio Code] Node.js 디버깅

처니형 2022. 4. 14. 11:30

https://extbrain.tistory.com/128

 

[Node.js + Vue.js] Visual Studio Code 디버그 모드

▶Node.js + Vue.js Visual Studio Code 디버그 모드 ▶설명 Node.js 개발을 진행하면서 디버그 모드를 사용하지 않는다면, 많은 불편이 있을 수 있습니다. Visual Studio Code에서 제공하는 디버그 모드를 설정하

extbrain.tistory.com

launch.json 작성

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Chrome against localhost",
      // "url": "http://localhost:8080",
      //"webRoot": "${workspaceFolder}"
      "program": "${workspaceFolder}\\bin\\www"
    }
  ]
}

 

'Node.js' 카테고리의 다른 글

[Node.js] SMTP 전송 & 엑셀 읽기/쓰기  (0) 2022.05.02
Deno와 Node.js 비교해보기  (0) 2022.03.30
Comments