Lightweight package for interacting with the Eimzo API:
- Connecting to the Eimzo application using WebSocket
- Implementing calls to the Eimzo API using Typescript
npm install @truschery/eimzo-api@latestTo view the complete documentation for the package, you can visit Docs
The package exports two classes:
- Client: creates a connection and allows you to send requests to Eimzo
- Eimzo: provides methods for interacting with API Eimzo
import Eimzo from "@truschery/eimzo-api"
const client = new Eimzo()
// Get a list of pfx certificates
const certificates = await client.pfx.listAllCertificates()
// ...To see more, you can visit the page Docs
This package is distributed under the MIT license.