0.0.1 • Published 8 years ago

postmen-api v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

ntrrobng:postmen-api

A simple Node wrapper for the Postmen shipping API

This is just a quick stab at using the API within a Node project I'm working on. It's rough and has limited coverage at the moment but will get better with time. Contributions are welcome.

Basic usage

var Postmen = npm.require('postmen-api');
var postmenApi = Postmen(YOUR_API_KEY);
postmenApi.createLabel({
  // create label body
}, function (error, body, response) {
  // do something!
})