Getting started
Installation
To add Twitch.js and the PubSub client to your project, just execute:
yarn add twitch twitch-pubsub-client
or using npm:
npm install twitch twitch-pubsub-client
Importing the library
Using ES2015 modules:
import { PubSubClient } from 'twitch-pubsub-client';
Using CommonJS:
const { PubSubClient } = require('twitch-pubsub-client');