ribbit

0.0.5 • Public • Published

Javascript Tasks

Example task:

var ribbit = require("ribbit");

capirona.run({
	"def hello": {
		"run": function(context, next) {
			console.log("hello %s!", context.get("message"));
			next();	
		}
	}
}).run({
  "hello": {
    "message": "Craig"
  }
}, function() {
	console.log("done");
});

API

creates a new runnable script

.run(source, target, callback)

/ribbit/

    Package Sidebar

    Install

    npm i ribbit

    Weekly Downloads

    7

    Version

    0.0.5

    License

    none

    Last publish

    Collaborators

    • architectd
    • crcn