webstorm调试nodejs

2019-08-19  本文已影响0人  sitherine

摘自:[http://pavelpolyakov.com/2016/05/01/webstorm-npm-tasks-debug/]

npm install node-inspect -g

在我开始之前,我的package.json文件的“脚本”部分 看起来是下一个方式:

"scripts": {
    "test-unit": "lab ./test/unit --pattern \"^[^_]\" --verbose",
}

我试图将“运行/调试配置”添加到WebStorm,但在运行时 - 没有发生任何事情。测试已执行,但应用程序未在调试点上停止。


image.png

过了一段时间,我已经找到了正确的公式,我想与你分享,所以你花的时间更少。关键是你的package.json文件,这里应该是这样的:

"scripts" : {
    "test-unit": "node $NODE_DEBUG_OPTION ./node_modules/lab/bin/lab ./test/unit --pattern \"^[^_]\" --verbose"
}
上一篇下一篇

猜你喜欢

热点阅读