Skip to content

mueslirieger/twitch-chatbot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitch Getting Started with Chatbots & IRC

=================

Chatbot Overview

Twitch offers an Internet Relay Chat (IRC) interface for chat functionality. Chatbots allow you to programmatically interact with a Twitch chat feed using IRC standards; the bot connects to the Twitch IRC network as a client to perform these actions.This guide presents an easy bot example to get you started.

Building the Bot

We’ll build a simple chatbot that responds in chat when someone types !dice. (This is known as a chatbot command.) When triggered, it randomly generates a number between 1-6. We run the fully-functioning chatbot on this Glitch, as well as show you how to run locally on our Developer Docs.

example-screenshot

Get Environment Variables

To start, you’ll need three environment variables:

| Variable | Description | |---|---|---|---|---| | BOT_USERNAME | The account (username) that the chatbot uses to send chat messages. This can be your Twitch account. Alternately, many developers choose to create a second Twitch account for their bot, so it's clear from whom the messages originate. |
|CHANNEL_NAME | The Twitch channel name where you want to run the bot. Usually this is your main Twitch account. |OAUTH_TOKEN |The token to authenticate your chatbot with Twitch's servers. Generate this with https://twitchapps.com/tmi/ (a Twitch community-driven wrapper around the Twitch API), while logged in to your chatbot account. The token will be an alphanumeric string.|

Running the bot

  1. To start with this template, click the Remix button in the upper right.

  2. Glitch automatically installs Node and Tmi.js for us.

  3. Add the three environmental vars in our .env file.

  4. View the code in bot.js.

  5. Your chatbot is ready to run! Glitch automatically deploys & runs each version. View the status button to ensure there are no errors.

  6. Try the chatbot! Interact with your channel (twitch.tv/<CHANNEL_NAME>) by trying the !dice command.

Note: This bot connects to the IRC network as a client and isn't designed to respond over HTTP. If you click "Show Live" you will see a simple "Hello World"

Next Steps

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published