meteocontrol
v0.0.3
Published
A javascript API wrapper for the meteocontrol VCOM REST API
Downloads
4
Readme
meteocontrol
A javascript API wrapper for the meteocontrol VCOM REST API
This package provides an easy to use, promise based api wrapper for the meteocontrol vcom rest api.
Installation
NPM
npm install meteocontrol --save
YARN
yarn add meteocontrol
Usage example
Below is a simple usage example on how to query systems configured on a vcom account and what to expect from the response.
import Meteocontrol from 'meteocontrol'
const meteocontrol = Meteocontrol.create(METEOCONTROL_API_KEY, METEOCONTROL_AUTH_KEY);
// list all systems
meteocontrol.systems().then(response => {
// response object is of the form:
{
"ok": Boolean, // True is the status code is in the 200's; false otherwise.
"problem": String, // One of 6 different values
"data": Object, // this is probably the thing you're after.
"status": Number, // the HTTP response code
"headers": Object, // the HTTP response headers
"config": Object, // the `axios` config object used to make the request
"duration": Object, // the number of milliseconds it took to run this request
}
});
Development setup
To get started with development of this package, install the dependencies using yarn, and test.
yarn
yarn test
Contributing
- Fork it (https://github.com/SovTech/meteocontrol/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request