npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

twitch-core

v1.0.0-rc30

Published

Twitch bot command client

Downloads

67

Readme

Installation

with npm:

npm install twitch-core

or yarn:

yarn add twitch-core

Features

  • Automatic command parsing
  • Automatic parsing of command arguments and conversion to named variables with type preservation
  • All commands run asynchronously
  • You can configure the prefix of commands
  • Loading configuration files
  • TypeScript definitions

Base settings for the client

import { join } from 'path'
import { TwitchCommandClient, TwitchChatMessage } from 'twitch-core'

const client = new TwitchCommandClient({
  username: 'vs_code',
  oauth: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  channels: ['archikoff', 'le_xot'],
  botOwners: ['vs_code']
})

client.on('connected', () => {})

client.on('join', channel => { })

client.on('error', err => { })

client.on('message', (msg: TwitchChatMessage) => { })

client.provider.set(
  join(__dirname, 'config/text-commands.json'),
  join(__dirname, 'config/commands.json')
)

client.registerTextCommands()

client.registerDefaultCommands()

client.registerCommandsIn(
  join(__dirname, '/commands')
)

client.connect()

Client extends of EventEmitter, so you can easily subscribe to his events.

You can register the bot's default commands (!commands, !help, etc.), using method registerDefaultCommands.

Method registerTextCommands allows loading text commands, using text-commands.json config.

Create folder called commands, that will contain all your commands.

Don't forget to call method registerCommandsIn, to register your own commands.

Creating a standard command

import { TwitchChatCommand, TwitchCommandClient, TwitchChatMessage, CommandOptions } from 'twitch-core'

class Example extends TwitchChatCommand {
  constructor(client: TwitchCommandClient, options: CommandOptions) {
    super(client, {
      name: 'example',
      userlevel: 'everyone',
      description: 'Example command',
      examples: [
        '!example',
        '!example <args>'
      ]
    })
  }

  async run(msg: TwitchChatMessage, args: string[]) {
    msg.reply(`Args -> ${args.join(' ')}`)
  }
}

export default Example

Command with named arguments

import { TwitchChatCommand, TwitchCommandClient, TwitchChatMessage, CommandOptions } from 'twitch-core'

interface CommandArgs {
  name: string
  age: number
  bool: boolean
}

class ExampleArgs extends TwitchChatCommand {
  constructor(client: TwitchCommandClient, options: CommandOptions) {
    super(client, {
      name: 'example-args',
      userlevel: 'everyone',
      description: 'Example of command with named arguments',
      examples: [
        '!example',
        '!example <args>'
      ],
      {
        name: 'name',
        type: String,
        defaultValue: 'Text string'
      },
      {
        name: 'age',
        type: Number,
        defaultValue: 22
      },
      {
        name: 'bool',
        type: Boolean,
        defaultValue: false
      }
    })
  }

  async run(msg: TwitchChatMessage, { name, age, bool }: CommandArgs) {
    msg.reply(`Args -> ${name} ${age} ${bool}`)
  }
}

export default ExampleArgs

Example bots

Create issue to add your bot 👍

Commands params

  • name: Name of command (default alias of command)
  • description: Description of command (using at !help <command>)
  • userlevel: Access level (everyone, regular, vip, subscriber, moderator, broadcaster)
  • examples?: Examples for command (using in !help <command>)
  • args?: Creating named command arguments
  • aliases?: Additional command aliases
  • botChannelOnly?: Is thing command only available on the bot channel (if you have enabled autoJoinBotChannel in client constructor)?
  • hideFromHelp?: Do we need to hide command from !commands list?
  • privmsgOnly?: Answer to command only at PM?

Text command params (also implements the options above)

  • text: Message text
  • messageType?: Message send type (reply, actionReply, say, actionSay)

Default commands

  • !commands: All registered commands
  • !help <command>: Help with command (detailed information)