自从node6.3以来,node已直接支撑相似node-inpect的功用,只要对实行的js代码到场一个–inspect参数,即可运用chrome做代码调试。
本文运用以下东西:
- node v9.5.0
- chrome 64
起首预备待调试代码。假如这是为了进修的目标,能够运用我测试用代码为:
var objectRegExp = /^\[object (\S+)\]$/;
function gettype(obj) {
var type = typeof obj;
if (type !== 'object') {
return type;
}
// inspect [[Class]] for objects
return toString.call(obj)
.replace(objectRegExp, '$1');
}
gettype({})
gettype(function(){})
然后运转此代码,加上参数–inspect-brk
node --inspect-brk a.js
体系提醒:
Debugger listening on ws://127.0.0.1:9229/84960765-5abc-4236-a7c6-924f99c34ed7
翻开浏览器,在地点栏内输入:
chrome://inspect/#devices
能够看到:
Remote Target
#LOCALHOST
Target (v9.5.0)
a.js
file:///Users/lcj/Documents/github/express/a.js
inspect
点击末了一行inspect,即可弹出一个新的窗口,此为调试器。而且调入代码到chrome调试器内,在实行命令的掌握台上能够看到:
Debugger attached.
如今,能够运用点击调试器内的Run | Step | Step Into等按钮做调试了。
关于没有直接运用node实行的代码,比方测试用例mocha,怎么办?mocha也是支撑这些选项的,比方express运用了mocha做单元测试,能够用以下定名来做调试:
mocha –require test/support/env –reporter spec –bail –check-leaks –no-exit test/app.router.js –inspect-brk -g ‘should decode correct params