Skip to content

Sewdn/node-vatapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

NodeJS wrapper of vatapi.com HTTP API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published