$ npm install --global jsrun
$ npm install --save-dev jsrun
var jsrun = require('jsrun');
jsrun.just('default', ['echo', '"Hello world!"']);
$ jsrun
The default task will run and print "Hello world!".
To run individual tasks, use jsrun <task> <othertask>
.
You can check out the documentations of gulp for more informations. Keep in mind that JsRun prefer shell scripts over gulp's file API and plugins.