1.0.0 • Published 2 years ago

async-enphase-envoy-client v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

build-cicodecovCodeQLMIT

async-enphase-envoy-client

async/await Node.js wrapper for Enphase Envoy REST API

If you have solar panels from Enphase at home, you might have an envoy from Enphase at your home too.

This npm helps you to communicate with the local envoy API.

How to use this module

Run the following command to install the package:

npm install async-enphase-envoy-client

Example:

const EnphaseEnvoy = require('async-enphase-envoy-client');

async function main(){
  const envoyClient = new EnphaseEnvoy.Client();
  await envoyClient.getSevenDaysProduction();
}

main().catch(
  console.log
);

Done

TODO

1.0.0

2 years ago