Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vatapi

Sewdn16MIT0.2.0

vatapi.com API Nodejs library.

vatapi, vat, btw, gst, api, http

readme

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