empatica-api
Unofficial empatica node.js module to access web data
Install
Install with npm
$ npm i empatica-api --save
Usage
const credentials = require('./credentials.json');
const EmpaticaApi = require('empatica-api');
const empticaApi = new EmpticaApi({
username: credentials.username,
password: credentials.password
})
await empticaApi.authenticate()
const sessions = await empticaApi.getSessions()
console.log(sessions[0]);
Check the examples directory for more useful basics or use the full documentation here.
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Author
mrzmyr
License
Copyright © 2018 mrzmyr
Licensed under the MIT license.