node.js - Running node-inspector and node-debug with npm run -
how run 2 script @ once npm run
? first of know grunt or gulp want make without js modules. make have script:
"scripts": { "start": "node ./node/www", "nodemon": "./node_modules/.bin/nodemon node/www.js -i './e2e-tests/**' -i './node_modules/**' -i '.idea/**' -i './node/log/**' -w './node/server/**/*' -v -l", "nodeinspector": "./node_modules/.bin/node-inspector --save-live-edit=true", "debug": "node-debug ./node/www.js", "ins": "npm run nodeinspector & npm run debug" }
i want run npm run ins
fires node-inspector.
it not possible run both commands. each need own console
Comments
Post a Comment