I have edited my package.json to customize the "start" script so it adds the --debug flag to node:
"scripts": {
"start": "node --debug server.js"
}
Is there a way of adding new scripts for example a debug script that would do what my customized "start" is doing right now?
I'm looking to be able to execute:
npm debug
From the nodejs docs:
So starting from Node 7.7.0v use
--inspect
In your package.json define the script
And then you can use npm's run-script
or the shorter version