0.1.3 • Published 9 years ago

eccio v0.1.3

Weekly downloads
2
License
ISC
Repository
github
Last release
9 years ago

Eccio

Simple utility to run node commands and then stop them!

npm install eccio --save-dev

todo

  • 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