tapojs
v1.1.1
Published
For interfacing with Tapo smart products
Downloads
1
Readme
TapoJS
A NodeJS library for interfacing with Tapo smart products. Only on/off is supported as of now.
Installation
npm install tapojs
Usage
const Tapo = require('tapojs');
async function main(){
const tapo = await new Tapo().connect("192.168.X.XXX", "[email protected]", "Passw0rd!");
await tapo.turnOn();
await tapo.turnOff();
};
main();