vatapi

0.2.0 • Public • Published

node-vatapi

NPM Badge

VatAPI Nodejs library. It wraps the HTTP api library described here.

Based on the NodeJS HTTP API wrapper of gitlab described here

Maintained by Pieter Soudan.

Install

# Install from npm 
npm install vatapi

Usage

Coffee-Script

# Connection 
vatapi = (require 'vatapi')
  key:   'your_key'
 
# Check a VAT 
vatapi.vat.number_check (err, result) ->
  console.log result

Javascript

// Connection
var vatapi = require('vatapi')({
  key:   'your_key'
});
 
// check a vat
vatapi.vat.number_check(function(err, result) {
  console.log(result);
});
 

Develop

Install coffee-script globally: 'npm install -g coffee-script'. Edit the Coffee-Script files in src, then build them using cake build. Use cake watch to build files continuously while developing.

Contributors

License

MIT

Changelog

/vatapi/

    Package Sidebar

    Install

    npm i vatapi

    Weekly Downloads

    1

    Version

    0.2.0

    License

    MIT

    Last publish

    Collaborators

    • sewdn