funker

0.0.4 • Public • Published

Funker for Node.js

A Node.js implementation of Funker.

Installation

$ npm install --save funker

Usage

Defining functions:

var funker = require('funker');
 
funker.handle(function(args, callback) {
  callback(args.x + args.y);
});

Calling functions:

var funker = require('funker');
funker.call("add", {x: 1, y: 2}, function(err, result) {
  console.log(result);
});

Readme

Keywords

none

Package Sidebar

Install

npm i funker

Weekly Downloads

9

Version

0.0.4

License

Apache 2

Last publish

Collaborators

  • bfirsh
  • funker-travis