VodOnDemand.TwitchEverywhere.Core 0.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package VodOnDemand.TwitchEverywhere.Core --version 0.4.0
                    
NuGet\Install-Package VodOnDemand.TwitchEverywhere.Core -Version 0.4.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="VodOnDemand.TwitchEverywhere.Core" Version="0.4.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="VodOnDemand.TwitchEverywhere.Core" Version="0.4.0" />
                    
Directory.Packages.props
<PackageReference Include="VodOnDemand.TwitchEverywhere.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add VodOnDemand.TwitchEverywhere.Core --version 0.4.0
                    
#r "nuget: VodOnDemand.TwitchEverywhere.Core, 0.4.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=VodOnDemand.TwitchEverywhere.Core&version=0.4.0
                    
Install VodOnDemand.TwitchEverywhere.Core as a Cake Addin
#tool nuget:?package=VodOnDemand.TwitchEverywhere.Core&version=0.4.0
                    
Install VodOnDemand.TwitchEverywhere.Core as a Cake Tool

TwitchEverywhere

TwitchEverywhere is a .NET library that allows connecting to a Twitch chat and subscribing to messages in that chat.

The goal of this library is to provide a lightweight, strongly typed API for clients so they can avoid parsing raw strings as much as possible. Additionally, Twitch requires an authenticated connection to the IRC server which can get a bit complicated to setup and maintain. Fortunately TwitchEverywhere can do that for you! 😀

The library will support the latest LTS version of .NET and non LTS versions IF it is newer than the LTS version. So for example before .NET 8, the library supported .NET 6 (LTS) and 7 but once .NET 8 was released support for 6 and 7 was dropped.

How To Use It

You will need to provide the following values as parameters to the TwitchConnectionOptions record:

TwitchConnectionOptions options = new(
    Channel: channel,
    AccessToken: accessToken,
    RefreshToken: refreshToken,
    ClientId: clientId,
    ClientSecret: clientSecret,
    ClientName: clientName
);

Next define a MessageCallback method that will handle any messages that TwitchEverywhere sends to your application. The input will be of type TwitchEverywhere.Types.Message and return type void.


// This example only handles MessageType.PrivMsg but you should handle other types here too
private void MessageCallback( Message message ) {
    switch( message.MessageType ) {
        case MessageType.PrivMsg: {
            PrivMsg privMsg = (PrivMsg) message;
            PrivMessageCallback( privMsg );
            break;
        }
        default:
            // This is just an example, you can handle this case however you wish
            throw new ArgumentOutOfRangeException();
    }
}

Then initialize TwitchEverywhere and pass in the options to the constructor. Finally call the TwitchEverywhere.ConnectToChannel method and pass in your callback as a parameter.

TwitchEverywhere.TwitchEverywhere twitchEverywhere = new( options );
await twitchEverywhere.ConnectToChannel( MessageCallback );

Now whenever TwitchEverywhere receives a message it will pass it to your callback! 🎉

Sample CLI App

There is a sample CLI application that is included as an example in this repo and you can use it to connect with Twitch – give it a try!

In order to connect you need to create an appsettings.json file in the root of the TwitchEverywhereCLI project with the following parameters:

{
  "AccessToken": "your_twitch_access_token",
  "RefreshToken": "your_twitch_refresh_token",
  "ClientId": "your_client_id",
  "ClientSecret": "your_client_secret",
  "ClientName": "your_client_name_all_lowercase",
  "Channel": "channel_you_want_to_connect_to"
}

Performance

See the README in the TwitchEverywhere.Benchmark project here

Supported Functionality

IRC Commands

See the related Twitch documentation here

Name API Link Data Type Link
CLEARCHAT CLEARCHAT Twitch API ClearChat Type
CLEARMSG CLEARMSG Twitch API ClearMsg Type
GLOBALUSERSTATE GLOBALUSERSTATE Twitch API GlobalUserState Type
HOSTTARGET HOSTTARGET Twitch API HostTargetMsg Type
NOTICE NOTICE Twitch API NoticeMsg Type
RECONNECT RECONNECT Twitch API ReconnectMsg Type
ROOMSTATE ROOMSTATE Twitch API RoomStateMsg Type
USERNOTICE USERNOTICE Twitch API UserNotice Type
USERSTATE USERSTATE Twitch API UserState Type
WHISPER WHISPER Twitch API WHISPER Type
CLEARCHAT

See CLEARCHAT tags

CLEARMSG

See CLEARMSG tags

GLOBALUSERSTATE

See GLOBALUSERSTATE tags

HOSTTARGET
Field Support
HostingChannel
Channel
NumberOfViewers
IsHostingChannel
NOTICE

See NOTICE tags

RECONNECT

No fields for RECONNECT, use the presence of this message as a signal to reconnect to Twitch. See the Twitch API docs for more infomation.

ROOMSTATE

See ROOMSTATE tags

USERNOTICE

See USERNOTICE tags

USERSTATE

See USERSTATE tags

WHISPER

See WHISPER tags

IRC Membership

See the related Twitch documentation here.

Name API Link Data Type Link
JOIN JOIN Twitch API Join Type
PART PART Twitch API Part Type
JOIN
Field Support
Channel
User
PART
Field Support
Channel
User

IRC Tags

See the related Twitch documentation here.

Name Support API Link Data Type Link
PRIVMSG PRIVMSG Twitch API PrivMsg Type
CLEARCHAT CLEARCHAT Twitch API ClearChat Type
CLEARMSG CLEARMSG Twitch API ClearMSG Type
GLOBALUSERSTATE GLOBALUSERSTATE Twitch API GlobalUserState Type
NOTICE NOTICE Twitch API NoticeMsg Type
ROOMSTATE ROOMSTATE Twitch API RoomState Type
USERNOTICE USERNOTICE Twitch API UserNotice Type
USERSTATE USERSTATE Twitch API UserState Type
WHISPER WHISPER Twitch API UserNotice Type
PRIVMSG Tags
Field Support
Badges
Bits
Color
DisplayName
Emotes
Id
Mod
PinnedChatPaidAmount
PinnedChatPaidCurrency
PinnedChatPaidExponent
PinnedChatPaidLevel
PinnedChatPaidIsSystemMessage
ReplyParentMsgId
ReplyParentUserId
ReplyParentUserLogin
ReplyParentDisplayName
ReplyThreadParentMsg
RoomId
Subscriber
Timestamp
Turbo
UserId
UserType
Vip
CLEARCHAT Tags
Field Support
BanDuration
RoomId
TargetUserId
Timestamp
CLEARMSG Tags
Field Support
Login
RoomId
TargetMessageId
Timestamp
GLOBALUSERSTATE Tags
Field Support
BadgeInfo
Badges
Color
DisplayName
EmoteSets
Turbo
UserId
UserType
NOTICE Tags
Field Support
MsgId
TargetUserId
ROOMSTATE Tags
Field Support
EmoteOnly
FollowersOnly
R9K
RoomId
Slow
SubsOnly
USERNOTICE Tags
Field Support
BadgeInfo
Badges
Color
DisplayName
Emotes
Id
Login
Mod
MsgId
RoomId
Subscriber
SystemMsg
TmiSentTs
Turbo
UserId
UserType
USERSTATE Tags
Field Support
BadgeInfo
Badges
Color
DisplayName
EmoteSets
Id
Mod
Subscriber
Turbo
UserType
WHISPER Tags
Field Support
Badges
Color
DisplayName
Emotes
MessageId
ThreadId
Turbo
UserId
UserType
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on VodOnDemand.TwitchEverywhere.Core:

Package Downloads
VodOnDemand.TwitchEverywhere.Rest

A dotnet library that allows connecting to Twitch REST APIs

VodOnDemand.TwitchEverywhere.Irc

A dotnet library that allows connecting to Twitch

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 165 5/1/2024
0.8.0 188 3/13/2024
0.7.3 162 3/10/2024
0.7.2 143 2/25/2024
0.7.1 150 2/25/2024
0.7.0 145 2/22/2024
0.6.2 138 1/28/2024
0.6.1 139 1/21/2024
0.6.0 149 1/20/2024
0.5.0 160 1/8/2024
0.4.0 146 12/10/2023
0.3.1 156 11/8/2023
0.3.0 150 10/23/2023
0.2.1 146 10/21/2023
0.2.0 141 10/16/2023
0.1.2 154 10/14/2023
0.1.1 145 10/13/2023
0.1.0 148 10/10/2023
0.0.2 168 10/8/2023
0.0.1 159 10/7/2023