ndevtool
v1.0.22
Published
ndevtool allows you to easily load your Node.js projects in to what is effectively chrome devtools. It uses the latest version of electron to run your projects and display chromium devtools. F5 and ctrl+R can be used to restart your project after you ma
Downloads
8
Readme
ndevtool allows you to easily load your Node.js projects in to what is effectively chrome devtools. It uses the latest version of electron to run your projects and display chromium devtools. F5 and ctrl+R can be used to restart your project after you make changes to the source. I built this to replace the legacy devtool package which could only supports node v6 features.
In order to install run the following two commands:
npm install -g electron
npm install -g ndevtool
The reason I don't include electron as a dependency is because it is huge and I might as well use the global installation.
After you have installed it you can use it like this:
ndevtool [file name]
example:
ndevtool index.js