0.0.2 • Published 7 years ago

node-gis-wrapper v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

node-gis-wrapper

A node module for easy interaction with the EXPA API.

There are methods for conveniently using the EXPA REST API. It automatically gets an access token for you, uses it with requests and refreshes it if necessary. So you do not have to worry about it.

Example:

var expa = require('node-gis-wrapper')('expa_user@email.com', 'password');
expa.get('current_person.json').then(console.log).catch(console.log);

You can install it via npm npm install node-gis-wrapper