vscode 除錯node之npm與nodemon
@(markdown及附件筆記) 更多相關內容見部落格 github.com/zhuanyongxi…
除錯nodejs有很多方式,可以看這一篇How to Debug Node.js with the Best Tools Available,其中我最喜歡使用的還是V8 Inspector和vscode的方式。
在vscode中,點選那個蜘蛛的按鈕
就能看出現debug的側欄,接下來新增配置
選擇環境
就能看到launch.json的檔案了。
啟動的時候,選擇相應的配置,然後點選指向右側的綠色三角
launch模式與attach模式
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/index.js"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Port",
"address": "localhost",
"port": 5858
}
]
}
複製程式碼
當request
為launch時,就是launch模式了,這是程式是從vscode這裡啟動的,如果是在除錯那將一直處於除錯的模式。而attach模式,是連線已經啟動的服務。比如你已經在外面將專案啟動,突然需要除錯,不需要關掉已經啟動的專案再去vscode中重新啟動,只要以attach的模式啟動,vscode可以連線到已經啟動的服務。當除錯結束了,斷開連線就好,明顯比launch更方便一點。
在debug中使用npm啟動
很多時候我們將很長的啟動命令及配置寫在了package.json
的scripts
中,比如
"scripts": {
"start": "NODE_ENV=production PORT=8080 babel-node ./bin/www",
"dev": "nodemon --inspect --exec babel-node --presets env ./bin/www"
},
複製程式碼
我們希望讓vscode使用npm的方式啟動並除錯,這就需要如下的配置
{
"name": "Launch via NPM",
"type": "node",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script", "dev" //這裡的dev就對應package.json中的scripts中的dev
],
"port": 9229 //這個埠是除錯的埠,不是專案啟動的埠
},
複製程式碼
在debug中使用nodemon啟動
僅僅使用npm啟動,雖然在dev
命令中使用了nodemon,程式也可以正常的重啟,可重啟了之後,除錯就斷開了。所以需要讓vscode去使用nodemon啟動專案。
{
"type": "node",
"request": "launch",
"name": "nodemon",
"runtimeExecutable": "nodemon",
"args": ["${workspaceRoot}/bin/www"],
"restart": true,
"protocol": "inspector", //相當於--inspect了
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"runtimeArgs": [ //對應nodemon --inspect之後除了啟動檔案之外的其他配置
"--exec",
"babel-node",
"--presets",
"env"
]
},
複製程式碼
注意這裡的runtimeArgs
,如果這些配置是寫在package.json
中的話,就是這樣的
nodemon --inspect --exec babel-node --presets env ./bin/www
複製程式碼
這樣就很方便了,專案可以正常的重啟,每次重啟一樣會開啟除錯功能。
可是,我們並不想時刻開啟除錯功能怎麼辦?
這就需要使用上面說的attach模式了。
使用如下的命令正常的啟動專案
nodemon --inspect --exec babel-node --presets env ./bin/www
複製程式碼
當我們想要除錯的時候,在vscode的debug中執行如下的配置
{
"type": "node",
"request": "attach",
"name": "Attach to node",
"restart": true,
"port": 9229
}
複製程式碼
完美!
參考資料
我在github github.com/zhuanyongxi…