0.2.2 • Published 3 years ago

dinip-tesjs v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

A module to streamline the use of Twitch EventSub in Node.js applications

Documentation

Learn how to use TESjs by reading through the documentation. Supplement your development with the Twitch EventSub documentation as well.

Install

TESjs is available for install through npm

npm install tesjs

Basic Usage

Keep in mind that in order for your subscriptions to work, the url you are pointing to for the listener MUST use HTTPS and port 443. More information can be found in the Twitch documentation here. Their suggestion for testing locally is to use a product like ngrok to create an HTTPS endpoint to forward your local server (which is hosted on HTTP).

const TES = require('tesjs');

// initialize TESjs
const tes = new TES({
    identity: {
        id: YOUR_CLIENT_ID,
        secret: YOUR_CLIENT_SECRET //do not ship this in plaintext!! use environment variables so this does not get exposed
    },
    listener: {
        baseURL: "https://example.com"
    }
});

// define an event handler for the 'channel.update' event
// NOTES: 
//   this handles ALL events of that type
//   events will not be fired until there is a subscription made for them
tes.on('channel.update', (userId, userName, title, language, categoryId, categoryName, isMature) => {
    console.log(`${userName}'s new title is ${title}`);
});

// create a new subscription for the 'channel.update' event for broadcaster '1337'
tes.subscribe('channel.update', {
    broadcaster_user_id: '1337'
}).then(_ => {
    console.log('Subscription successful');
}).catch(err => {
    console.log(err);
});

Use an Existing Express Server

TESjs uses Express under the hood to host a webhooks endpoint. If you already have a server running on Express that you want to use, you can pass it into the configuration object for TESjs.

const TES = require('tesjs');
const express = require('express');

// create our Express server
const app = express();

app.get('/', (req, res) => {
    res.send('OK');
});

app.listen(8080);

// initialize TESjs
const tes = new TES({
    identity: {
        id: YOUR_CLIENT_ID,
        secret: YOUR_CLIENT_SECRET //do not ship this in plaintext!! use environment variables so this does not get exposed
    },
    listener: {
        baseURL: "https://example.com",
        server: app
    }
});

// define an event handler for the 'channel.update' event
// NOTES: 
//   this handles ALL events of that type
//   events will not be fired until there is a subscription made for them
tes.on('channel.update', (userId, userName, title, language, categoryId, categoryName, isMature) => {
    console.log(`${userName}'s new title is ${title}`);
});

// create a new subscription for the 'channel.update' event for broadcaster '1337'
tes.subscribe('channel.update', {
    broadcaster_user_id: '1337'
}).then(_ => {
    console.log('Subscription successful');
}).catch(err => {
    console.log(err);
});

Problems/Suggestions/Questions?

If you have any questions, suggestions, need to report a bug, etc, submit an issue.

Contribute

Want to contribute to TESjs? Check out the contribution guidelines to see how.

Support

Want to help support me in maintaining TESjs? Consider sponsoring me on GitHub Sponsors. You can also give a one-time donation through PayPal.

Community

Have you made something with TESjs? I'd love to hear about it! You can tweet me @imMtB_ and show off your project.

0.2.2

3 years ago

0.2.1

3 years ago