0.0.2 • Published 11 years ago

bcclient v0.0.2

Weekly downloads
6
License
-
Repository
-
Last release
11 years ago

bcclient

BarCode Client

Install

stable

npm install bcclient

edge

npm install https://github.com/daxxog/bcclient/tarball/master

Example

var bcclient = require('bcclient')('localhost', 8888),
    fs = require('fs');

bcclient.png('12345', function(err, data) {
    fs.writeFileSync('test.png', data);
});

bcclient.svg('12345', function(err, data) {
    console.log(data.toString());
});