Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trickfilm400/cs141-ups-mangement-card
Node.JS API for CS141 Management Card for UPS Systems
https://github.com/trickfilm400/cs141-ups-mangement-card
api cs141 management node nodejs nodejs-api npm npm-module npm-package ups usv
Last synced: about 1 month ago
JSON representation
Node.JS API for CS141 Management Card for UPS Systems
- Host: GitHub
- URL: https://github.com/trickfilm400/cs141-ups-mangement-card
- Owner: Trickfilm400
- License: mit
- Created: 2022-08-02T11:29:05.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-17T08:16:03.000Z (3 months ago)
- Last Synced: 2024-10-12T08:22:52.804Z (about 1 month ago)
- Topics: api, cs141, management, node, nodejs, nodejs-api, npm, npm-module, npm-package, ups, usv
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@trickfilm400/cs141-ups-mangement-card
- Size: 270 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# cs141-ups-management-card
This Node.JS API can receive data from a [cs141](https://www.generex.de/support/downloads/ups/cs141) UPS management card via its API.
Written in Typescript with typings available built-in
From now on supports ESM and CJS and is available on [GitHub Packages](https://github.com/Trickfilm400/cs141-ups-mangement-card) as well as [NPM](https://www.npmjs.com/package/@trickfilm400/cs141-ups-mangement-card)
## Example-Usage
```typescript
//import Class
import {CS141} from "@trickfilm400/cs141-ups-management-card";
// create Class instance (host, username, password)
const z = new CS141('https://192.168.10.133', 'admin', 'cs141-snmp');
//receive data and print to console
z.handleRequest().then(console.log, console.log);
```© 2022-2024 Trickfilm400