solis-cloud-api
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Solis Cloud API in NodeJS

This is a NodeJS wrapper for the Solis Cloud API. It is a work in progress and is not yet ready for production use. The API is written in TypeScript and is fully typed.

Installation

npm i solis-cloud-api

Note: NodeJS 18 or higher is required as the project uses node's native fetch module

Usage

You'll need to get access to Solis Cloud API which is available through a service ticket with Solis. Read full instructions here.

Create a .env file in the root of your project and add the following:

BASEURL="https://www.soliscloud.com:13333"
SECRET="YOUR_SECRET"
KEY="YOUR_KEY"

Then your implementation may look something like this

import solisApi from "solis-cloud-api";

const api = solisApi(process.env.BASEURL, process.env.KEY, process.env.SECRET);
const stationList = await api.getUserStationList();

Completion status

The following APIs are available:

  • [x] getUserStationList (Power Station List)
  • [x] getStationDetail (Power Station Details)
  • [x] getCollectorList (Datalogger List)
  • [x] getCollectorDetail (Datalogger Details)
  • [x] getInverterList (Inverter List)
  • [x] getInverterDetail (Inverter Details)
  • [x] getStationDay (Plant Daily Graph)
  • [x] getStationMonth (Plant Monthly Graph)
  • [x] getStationYear (Plant Yearly Graph)

Readme

Keywords

Package Sidebar

Install

npm i solis-cloud-api

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

34.2 kB

Total Files

17

Last publish

Collaborators

  • steveworkman