Go to file
2019-06-28 23:34:54 -03:00
2019-06-26 20:25:56 -03:00
2019-06-28 23:34:54 -03:00
2019-06-26 21:49:31 -03:00
2019-06-28 21:30:27 -03:00
2019-06-26 20:25:56 -03:00
2019-06-26 20:25:56 -03:00
2019-06-28 00:05:59 -03:00
2019-06-26 21:30:11 -03:00
2019-06-28 23:24:46 -03:00
2019-06-28 01:42:09 -03:00
2019-06-28 01:42:09 -03:00
2019-06-28 23:34:54 -03:00

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.

Description
No description provided
Readme MIT 1.7 MiB
Languages
JavaScript 100%