您好,登錄后才能下訂單哦!
這篇文章主要講解了“調(diào)試Node.js代碼的方式有哪些”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“調(diào)試Node.js代碼的方式有哪些”吧!
很多時(shí)候,我苦惱于 Node.js 的調(diào)試,只會(huì)使用 console.log 這種帶有侵入性的方法,但是其實(shí) Node.js 也可以做到跟瀏覽器調(diào)試一樣的方便。
本文環(huán)境:
mac Chrome 94.0.4606.81 node v12.12.0 vscode Version: 1.61.1
本文示例采用的是之前探索洋蔥模型的,僅有一個(gè)文件,就是根目錄下 index.js
,如下:
const Koa = require('koa'); const app = new Koa(); console.log('test') // 中間件1 app.use((ctx, next) => { console.log(1); next(); console.log(2); }); // 中間件 2 app.use((ctx, next) => { console.log(3); next(); console.log(4); }); app.listen(9000, () => { console.log(`Server is starting`); });
v8 Inspector Protocol 是 nodejs v6.3 新加入的調(diào)試協(xié)議,通過 websocket與 Client/IDE 交互,同時(shí)基于 Chrome/Chromium 瀏覽器的 devtools 提供了圖形化的調(diào)試界面。
我們進(jìn)入項(xiàng)目根目錄,執(zhí)行(留意這個(gè) 8888 端口,后面會(huì)用到):
node --inspect=8888 index.js
結(jié)果如下:
結(jié)果出來一個(gè)鏈接——ws://127.0.0.1:8888/5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d
。這個(gè)鏈接是 Node.js 和 Chrome 之前通信的 websocket 地址,通過 websocket 通信,我們可以在 Chrome 中實(shí)時(shí)看到 Node.js 的結(jié)果。
第一種方式(自己嘗試無效)
打開 http://localhost:8888/json/list
,其中 8888
是上面 --inspect
的參數(shù)。
[ { "description": "node.js instance", "devtoolsFrontendUrl": "chrome-devtools://devtools/bundled/js_app.html?experiments=true&v8only=true&ws=localhost:8888/5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d", "devtoolsFrontendUrlCompat": "chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=localhost:8888/5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d", "faviconUrl": "https://nodejs.org/static/images/favicons/favicon.ico", "id": "5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d", "title": "index.js", "type": "node", "url": "file:///Users/gpingfeng/Documents/Personal/Test/test-onion/index.js", "webSocketDebuggerUrl": "ws://localhost:8888/5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d" } ]
很多資料說,可以通過 devtoolsFrontendUrl
就可以直接訪問到,但嘗試了一下,并沒有成功。【可能跟我的環(huán)境有關(guān)】
第二種方式
查了一下資料,在 stackoverflow 找到對(duì)應(yīng)的方案,如下:
devtools://devtools/bundled/inspector.html?experiments=true&ws=127.0.0.1:8888/5f5c59fc-d42b-4ab0-be15-6feb1a05ed2d
其中 devtools://devtools/bundled/inspector.html?experiments=true
是固定的,ws
參數(shù)對(duì)應(yīng)的就是 websocket 地址。
可以看到界面如下:
第三種方式
Chrome 瀏覽器打開 HTTP 監(jiān)聽接口頁面,打開 dev tool,執(zhí)行完 node --inspect=8888 index.js
后可以看到這個(gè)圖標(biāo),點(diǎn)擊一下:
就可以出現(xiàn)跟瀏覽器一樣的調(diào)試頁面,比如 Sources Panel查看腳本、Profile Panel 監(jiān)測(cè)性能等。
另外,可以訪問訪問 chrome://inspect/#devices
,可以看到當(dāng)前瀏覽器監(jiān)聽的所有 inspect。
除了瀏覽器之外,各大主流的 IDE 都支持 Node.js 的調(diào)試,本文以 Vscode 為例。
打開調(diào)試頁面,給我們 Node 項(xiàng)目添加一個(gè) launch 配置:
選擇 Node.js
這樣就會(huì)在項(xiàng)目根目錄生成對(duì)應(yīng)的文件 .vscode/launch.json
(當(dāng)然你也可以手動(dòng)創(chuàng)建),其中 program
指的就是文件入口,${workspaceFolder}
指的是根目錄。
{ // 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": "pwa-node", "request": "launch", "name": "Launch Program", "skipFiles": [ "<node_internals>/**" ], "program": "${workspaceFolder}/index.js" } ] }
按 F5、或者點(diǎn)擊如下按鈕:
結(jié)果:
可以看到,在左側(cè)可以顯示當(dāng)前作用域的值,調(diào)用堆棧等信息,右上方亦可逐步調(diào)試函數(shù)、重啟等功能,非常強(qiáng)大。
通過 Attach to Node Process Action 的方式,我們可以直接調(diào)試運(yùn)行中的 Node.js 進(jìn)程。
比如我們先啟動(dòng)項(xiàng)目——npm run start
。
然后 command + shift + p
(window Ctrl+Shift+p
),輸入 Attach to Node Process Action
,回車,然后選中運(yùn)行中進(jìn)程再回車,就可以跟上面配置一樣調(diào)試代碼了。
感謝各位的閱讀,以上就是“調(diào)試Node.js代碼的方式有哪些”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)調(diào)試Node.js代碼的方式有哪些這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。