UNPKG

vatapi

Version:

vatapi.com API Nodejs library.

65 lines (42 loc) 1.17 kB
# node-vatapi [![NPM Badge](https://nodei.co/npm/vatapi.png?downloads=true&stars=true)](https://nodei.co/npm/vatapi/) -- [VatAPI](https://vatapi.com/) Nodejs library. It wraps the HTTP api library described [here](https://vatapi.com/console/#!/api/). Based on the NodeJS HTTP API wrapper of gitlab described [here](https://github.com/node-gitlab/node-gitlab) Maintained by [Pieter Soudan](https://github.com/Sewdn). ## Install ```bash # Install from npm npm install vatapi ``` ## Usage ### Coffee-Script ```coffee # Connection vatapi = (require 'vatapi') key: 'your_key' # Check a VAT vatapi.vat.number_check (err, result) -> console.log result ``` ### Javascript ```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 - [Pieter Soudan](https://github.com/Sewdn) ## License MIT ## Changelog