调试npm包

运行时加入参数:--inspect-brk
使用node启动,比如:node --inspect-brk bin/client.js
然后在chrome中chrome://inspect/#devices
选择

在 ~/.bash_profile 中声明

{{{ debug nodejs

function debug () {
node --inspect-brk --trace-warnings --trace-deprecation $@
}

}}}

后续在终端直接运行debug 命令

增加额外参数:
1、在option中声明
2、使用env
3、xx=ying npm run dev... 这样在js中可以用 process.env.xx来获取值

你可能感兴趣的:(调试npm包)