0.0.2 • Published 12 years ago

counterman-client v0.0.2

Weekly downloads
8
License
-
Repository
github
Last release
12 years ago

node-counterman-client

Simple wrapper to talk to counterman

Usage

var cm = require('counterman-client'),
    cmHost = 'my.counterman.com';

cm.make(cmHost, function(id){
    console.log('Made ID: ', id);
    cm.getLast(function(lastId){
        console.log('Last ID generated was: ' + lastId);
    });
});

Install

 npm install node-counterman-client

Testing

git clone
npm install
mocha