Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 745 Bytes

README.md

File metadata and controls

44 lines (27 loc) · 745 Bytes

Getting Started

API

API documentation

Setting up

1. Install JsRun globally:

$ npm install --global jsrun

2. Install JsRun in your project devDependencies:

$ npm install --save-dev jsrun

3. Create a jsrunfile.js at the root of your project:

var jsrun = require('jsrun');

jsrun.just('default', ['echo', '"Hello world!"']);

4. Run JsRun:

$ jsrun

The default task will run and print "Hello world!".

To run individual tasks, use jsrun <task> <othertask>.

More

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.