gpt4 book ai didi

javascript - 如何为我的应用程序使用带有 `npm start` 的 Node 检查器?

转载 作者:搜寻专家 更新时间:2023-10-31 23:30:40 24 4
gpt4 key购买 nike

我正在使用 npm start 启动我的 MEAN 堆栈应用程序,但我想使用 Node 检查器来调试一些 Mongoose。我知道我可以使用 node-inspector 启动 Node 检查器,但是我可以用什么代替 node --debug app.js 来启动 npm 适合我的情况吗?

这是我的 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

更多信息,这是我的related question .

最佳答案

您可能希望将单独的 debug 脚本添加到 package.json。这样你就不必记得在完成调试后恢复 npm start

"scripts": {
"start": "node ./bin/www",
"debug": "node --debug ./bin/www"
}

npm run 开始:

$ npm run debug

关于javascript - 如何为我的应用程序使用带有 `npm start` 的 Node 检查器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33090353/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com