如何为我的应用程序使用 node-inspector 和 `npm start`?
How to use node-inspector with `npm start` for my application?
我正在使用 npm start
启动我的 MEAN 堆栈应用程序,但我想使用节点检查器来调试一些 Mongoose。我知道我可以用 node-inspector
启动节点检查器,但是我可以用什么替代 node --debug app.js
来使 npm start
在我的情况下工作?
这是我的 MEAN 堆栈目录结构:
HTML views/
Angular.js public/javascript/
Express.js routes/
Node.js app.js
Mongoose js models/, connected in app.js
Mongo db connected in app.js
更多信息,这是我的。
在package.json
修改start
运行命令:
"scripts": {
"start": "node --debug app.js"
}
您可能想要将单独的 debug
脚本添加到 package.json
。这样你就不必记得在完成调试后恢复 npm start
。
"scripts": {
"start": "node ./bin/www",
"debug": "node --debug ./bin/www"
}
从 npm run
开始:
$ npm run debug
我是这样使用的,我还在一个命令中设置了一个变量和 运行 检查器:
npm run debug
"scripts": {
"start": "set SOAPAPI=https://example.com/&&nodemon",
"debug": "start node-inspector --web-port=8081&&set SOAPAPI=https://example.com/&&nodemon --debug"
}
*nodemon 是 node 的实用程序包装器,您可以使用 node
代替
我正在使用 npm start
启动我的 MEAN 堆栈应用程序,但我想使用节点检查器来调试一些 Mongoose。我知道我可以用 node-inspector
启动节点检查器,但是我可以用什么替代 node --debug app.js
来使 npm start
在我的情况下工作?
这是我的 MEAN 堆栈目录结构:
HTML views/
Angular.js public/javascript/
Express.js routes/
Node.js app.js
Mongoose js models/, connected in app.js
Mongo db connected in app.js
更多信息,这是我的
在package.json
修改start
运行命令:
"scripts": {
"start": "node --debug app.js"
}
您可能想要将单独的 debug
脚本添加到 package.json
。这样你就不必记得在完成调试后恢复 npm start
。
"scripts": {
"start": "node ./bin/www",
"debug": "node --debug ./bin/www"
}
从 npm run
开始:
$ npm run debug
我是这样使用的,我还在一个命令中设置了一个变量和 运行 检查器:
npm run debug
"scripts": {
"start": "set SOAPAPI=https://example.com/&&nodemon",
"debug": "start node-inspector --web-port=8081&&set SOAPAPI=https://example.com/&&nodemon --debug"
}
*nodemon 是 node 的实用程序包装器,您可以使用 node
代替