eccio
v0.1.3
Published
The node command runner utilies, embedable in gulp or anywhere
Downloads
23
Maintainers
Readme
Eccio
Simple utility to run node commands and then stop them!
npm install eccio --save-devtodo
- browser reload
what?
It's like running node commands from terminal, but you can stop them whenever. You still get all the stderr and stdout.
var eccio = require('eccio');
eccio.run(['express.js'], {cwd: '.'});
eccio.stop();
API
run
Run takes two params, an array of commands and object of options.
eccio.run(['express.js'], {cwd: '.'});
cwd is the current working directory.
stop
stop will killed the command
eccio.stop();
Credit
Heavy borrows from gulp-express
Note
MIT
