WIP: Botkit socket client
A small botkit (https://botkit.ai/) socket client library written in typescript
Usage
Import the library
Create a client and send a message
const config = ws_url: "ws://localhost:3000" reconnect_timeout: 3000 max_reconnect: 5 enable_history: false let client = config;client
add an event listener:
client.getSocket.addEventListenerListenerEvent.OPEN,;
Are you a dev? You are welcome!
Initialize the project
make install
Build in dev mode
make build-prod
Build in prod mode
make watch-dev