https://github.com/streamerbot/client
Streamer.bot WebSocket client
https://github.com/streamerbot/client
streamerbot typescript websocket
Last synced: 11 months ago
JSON representation
Streamer.bot WebSocket client
- Host: GitHub
- URL: https://github.com/streamerbot/client
- Owner: Streamerbot
- License: mit
- Created: 2023-01-24T20:20:52.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-14T15:18:30.000Z (11 months ago)
- Last Synced: 2025-07-14T17:19:31.364Z (11 months ago)
- Topics: streamerbot, typescript, websocket
- Language: TypeScript
- Homepage: https://streamerbot.github.io/client/
- Size: 2.74 MB
- Stars: 43
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamer.bot Client
TypeScript client for interacting with the [Streamer.bot](https://streamer.bot) WebSocket API
[](https://www.npmjs.com/package/@streamerbot/client) [](https://www.npmjs.com/package/@streamerbot/client) [](https://streamerbot.github.io/client)
[Full Documentation](https://streamerbot.github.io/client/)
## 🌈 Demo
All functionality on [Streamer.bot Toolkit](https://toolkit.streamer.bot) is utilizing this client library 😍
## 📦 Installation
Package Manager
```
yarn add @streamerbot/client
npm install @streamerbot/client
pnpm install @streamerbot/client
```
CDN / Browser
```
```
## 🦄 Basic Usage
```ts
import { StreamerbotClient } from '@streamerbot/client';
// Create a new client with default options
const client = new StreamerbotClient();
// Subscription will automatically be added to client with your listener function
client.on('Twitch.ChatMessage', (data) => {
console.log('Twitch Chat Message Received!', data);
});
```
Check out the [docs](https://streamerbot.github.io/client/) for more usage examples.
## 🌸 Thanks
Huge thanks to [nate1280](https://github.com/nate1280) for creating Streamer.bot!
## 👨🚀 Contributors
[Whipstickgostop](https://github.com/whipstickgostop)
## 📄 License
MIT License © 2023-Present [Whipstickgostop](https://github.com/whipstickgostop)