UNPKG

744 BMarkdownView Raw
1DeNode
2======
3
4DeNode is short for Debug Node, it's a tiny wrapper around [Electron][1] that lets you debug your [Node][2] apps using Chrome Dev Tools :tada:
5
6## Installation
7```sh
8npm install -g denode
9```
10
11## Usage
12
13```sh
14denode
15denode .
16denode ./index.js
17denode `which browserify`
18```
19
20*Note*: `denode .` uses the `main` property in the project's `package.json`.
21
22To reload the app, simply press CTRL + R on Linux/Windows and CMD + R on Mac OSX.
23
24## Screenshot
25
26<img alt="DeNode" src="https://cloud.githubusercontent.com/assets/4278113/14579761/20e2a9a2-036b-11e6-8bc7-fba7cda9a026.png">
27
28## License
29
30DeNode is licensed under the terms of MIT License, see the LICENSE file for more info.
31
32[1]:http://electron.atom.io/
33[2]:http://nodejs.org/