I am using npm start
to start my MEAN stack application, but I would like to use the node-inspector to debug some Mongoose. I know I can start the node inspector with node-inspector
, but what can I substitute node --debug app.js
with to make npm start
work in my case?
This is my MEAN stack directory structure:
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
For more information, this is my related question.
You may want to add a seperate
debug
script topackage.json
. That way you won't have to remember to revertnpm start
when you're finished debugging.Start with
npm run
:In
package.json
modify thestart
run command:I use it like this, I also set a variable and run the inspector in one command:
npm run debug
*nodemon is an utility wrapper for node, you can use
node
instead