0.0.4 • Published 7 years ago

funker v0.0.4

Weekly downloads
1
License
Apache 2
Repository
github
Last release
7 years ago

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);
});
0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago