A 3rd party node.js library that implements the Abode API.
npm i abode-apiThis library uses axios to send HTTP request. All methods will expose the underlying config parameter for axios
Begin by initializing with your username and password.
let abode = require('abode-api').abode(username, password);
abode.mode.status()
.then(response => console.log(response))
.catch(err => console.log(err));abode.mode.home()abode.mode.away()abode.mode.standby()abode.mode.panel()abode.mode.devices()abode.mode.associates()