Handwriting.io node.js bindings
Installation
npm install handwriting-node
Documentation
Documentation will come soon.
API Overview
Every resource is accessed via your handwriting
instance:
var handwriting = ' your handwriting.io key ' ' your handwriting.io secret ';// handwriting.{ RESOURCE_NAME }.{ METHOD_NAME }
Every resource method accepts an optional callback as the last argument:
handwritinghandwritings;
Available resources & methods
Where you see params
it is a plain JavaScript object, e.g. { email: 'foo@example.com' }
- balance
list()
retrieve(params)
- render
createPdf(params)
createPng(params)
Development
To run the tests you'll need a Handwriting.io Test API key (from your Handwriting.io Dashboard):
$ npm install -g mocha$ npm test
Thanks
This repository is almost a wholesale clone of Stripe's Node library. A huge thanks goes to their awesome tech team for creating a great model Node library.