mirror of
https://github.com/skydiver/ewelink-api.git
synced 2025-12-25 23:03:39 +01:00
cbb5df2304806a67937d8918b4587752f6a56f86
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.14. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.11...4.17.14) Signed-off-by: dependabot[bot] <support@github.com>
ewelink-api
eWeLink API for Node.js
Installation
npm install ewelink-api
Usage
const ewelink = require('ewelink-api');
(async () => {
const conn = new ewelink({
email: '<your ewelink email>',
password: '<your ewelink password>',
});
/* get all devices */
const devices = await conn.getDevices();
console.log(devices);
})();
Check demo/ directory for more examples.
Languages
JavaScript
100%