Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

twitch-kit

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twitch-kit

Twitch Bot Package with amazing features like Title Update.

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

Twitch Kit

With this package, you can easily build a powerful Twitch Bot.

Installation Info

npm install twitch-kit

Getting started

const TwitchBot = require('twitch-kit');
const Bot = new TwitchBot({
    username: "karpfenthebot",
    oauth: "oauth: TOKEN",
    channels=["dieserobin"],
    port=443,
    pubsub=true,
    topics=['channel-points-channel-v1']
})

Bot.on("join", channel => {
    Bot.say("Hello World!");
})

Bot.on("error", error => {
    console.log(error);
})

Bot.on("message", chatter => {
    console.log("Hello "+chatter.username);
})

Bot.on("data", data => {
    console.log(data);
})

License

This Project is licensed under the MIT License, read more in the License file.

This Package was built by Robin Klein.

Keywords

FAQs

Package last updated on 12 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc