https://github.com/bitloops/ts-bitloops-ermis-publisher
Bitloops Ermis Publisher - TypeScript
https://github.com/bitloops/ts-bitloops-ermis-publisher
Last synced: 4 months ago
JSON representation
Bitloops Ermis Publisher - TypeScript
- Host: GitHub
- URL: https://github.com/bitloops/ts-bitloops-ermis-publisher
- Owner: bitloops
- Created: 2022-07-11T14:49:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-15T09:43:11.000Z (about 4 years ago)
- Last Synced: 2025-10-19T12:43:52.177Z (10 months ago)
- Language: TypeScript
- Size: 142 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# bitloops-ermis-publisher
Bitloops Ermis publisher library for the browser and node.js written in TypeScript
## Usage
### Installing
Using npm:
```bash
$ npm install bitloops-ermis-publisher
```
Using yarn:
```bash
$ yarn add bitloops-ermis-publisher
```
### TypeScript usage Example
```ts
import app from 'bitloops-ermis-publisher';
// You will get this from your Console in your Workflow information
const bitloopsConfig = {
apiKey: "kgyst344ktst43kyygk4tkt4s",
server: "bitloops.net",
environmentId: "3c42a5ef-fe21-4b50-8128-8596ea47da93",
workspaceId: "4f7a0fc5-fe2f-450a-b246-11a0873e91f0",
messagingSenderId: "742387243782",
}
const bitloops = app.initialize(bitloopsConfig);
bitloops.publish('my-topic', 'my-event', {myData: 'Hello World'});
## Questions?
Please post your questions on [Stack Overflow](https://stackoverflow.com) making sure you use the **Bitloops** tag and someone from the Bitloops team or the community will make sure to help you.
Alternatively feel free to [submit an Issue on GitHub](https://github.com/bitloops/bitloops-ermis-subscriber/issues/new).