This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem you need chrome installed and callable from the command line | |
rem create a batch or cmd file with these three lines, install node-inspector (npm i node-inspector), start the batch | |
start "" /D"." node --debug-brk app.js | |
start "" /D"." node .\node_modules\node-inspector\bin\inspector.js & | |
start chrome http://127.0.0.1:8080/debug?port=5858 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you have visual studio 2013: | |
npm install node-inspector --msvs_version=2013 | |
or other versions as they are present (2010, 2012,...) | |
here the output showing the successful build steps: | |