TwurpleAuthenticationGetting dataExamplesFAQMigration

@twurple/easy-bot

Twurple - Bot framework

GitHub license npm version PRs welcome

A simplified framework to get a chatbot running easily.

Installation

npm install @twurple/easy-bot
# or
yarn add @twurple/easy-bot
# or
pnpm install @twurple/easy-bot

Example

import { Bot, createBotCommand } from '@twurple/easy-bot';
import { StaticAuthProvider } from '@twurple/auth';

const bot = new Bot({
	authProvider:  new StaticAuthProvider("clientId", "accessToken"),
	channel: 'satisfiedpear',
	commands: [
		createBotCommand('d20', async (params, { userName, say, timeout }) => {
			const diceRoll = Math.floor(Math.random() * 20) + 1;
			if (diceRoll === 1) {
				await say(`@${userName} rolled a critical failure and must be punished!`);
				await timeout(30, 'critical failure');
			} else if (diceRoll === 20) {
				await say(`Woah, critical success! @${userName} deserves all the praise!`);
			} else {
				await say(`@${userName} rolled a ${diceRoll}!`);
			}
		})
	]
});