A collection of components to embed Twitch.
For more information, visit the Embedding Twitch documentation page.
Make sure to check out the Demo and Documentation page for more information on the usage of the components, alongside a description on all the supported props for each component.
npm install react-twitch-embed
This package ships both an ESM and a CommonJS build alongside its own type declarations, and it supports
React 18 and React 19. react and react-dom are peer dependencies, so they are not installed for you.
import { TwitchPlayer } from 'react-twitch-embed';
const MyComponent = () => {
return (
<TwitchPlayer channel="moonstar_x" autoplay muted />
);
};| Component | Embeds | Interactive | Renders |
|---|---|---|---|
TwitchEmbed |
Streams, VODs and collections, plus chat | ✅ | A div managed by Twitch's Embed script |
TwitchPlayer |
Streams, VODs and collections | ✅ | A div managed by Twitch's Player script |
TwitchPlayerNonInteractive |
Streams, VODs and collections | ❌ | A plain iframe |
TwitchClip |
Clips | ❌ | A plain iframe |
TwitchChat |
A channel's chat | ❌ | A plain iframe |
Interactive components load a script from Twitch on demand and expose the underlying instance through their events,
which enables smooth media switching and external control. Non-interactive components are just an iframe, so they
download nothing extra and add no nodes to the document body.
Every component forwards any prop it does not own to its underlying node, so className, style, data
attributes and DOM event handlers all work as expected. The full list of props for each component lives in the
documentation.
Everything is exported by name from the package root:
import {
TwitchChat,
TwitchClip,
TwitchEmbed,
TwitchPlayer,
TwitchPlayerNonInteractive
} from 'react-twitch-embed';Alongside the components, the following types are exported for TypeScript consumers:
import type {
// Props.
TwitchChatProps,
TwitchClipProps,
TwitchEmbedProps,
TwitchPlayerProps,
TwitchPlayerNonInteractiveProps,
// Event payloads.
OnAuthenticateData,
OnPlayData,
OnSeekData,
// The underlying Twitch API.
Parent,
PlaybackStats,
PlayerQuality,
PlayerState,
TwitchEmbedConstructor,
TwitchEmbedConstructorOptions,
TwitchEmbedInstance,
TwitchPlayerConstructor,
TwitchPlayerConstructorOptions,
TwitchPlayerInstance,
TwitchWindow
} from 'react-twitch-embed';import { TwitchEmbed } from 'react-twitch-embed';
const MyComponent = () => {
return (
<TwitchEmbed channel="moonstar_x" autoplay muted withChat />
);
};Both TwitchEmbed and TwitchPlayer hand you the underlying Twitch instance through their events. Keep it in a
ref instead of state to avoid rerendering on every event:
import { useRef } from 'react';
import { TwitchPlayer } from 'react-twitch-embed';
import type { TwitchPlayerInstance } from 'react-twitch-embed';
const MyComponent = () => {
const player = useRef<TwitchPlayerInstance | null>(null);
const handleReady = (instance: TwitchPlayerInstance) => {
player.current = instance;
};
return (
<>
<TwitchPlayer channel="moonstar_x" autoplay muted onReady={handleReady} />
<button onClick={() => player.current?.pause()}>Pause</button>
</>
);
};Event handlers are read through a ref internally, so inline arrow functions are safe: they never recreate the embed and the latest one is always the one that gets called.
import { TwitchChat, TwitchClip } from 'react-twitch-embed';
const MyComponent = () => {
return (
<>
<TwitchClip clip="AdventurousBusyWormTwitchRaid-7vDEE8L5ur9j9dzi" autoplay muted />
<TwitchChat channel="moonstar_x" darkMode />
</>
);
};This package includes some typings for the Embed and Player constructors that are downloaded automatically
into the browser's window object. These are unofficial typings that I made empirically, some of them might not be accurate.
The documentation on Twitch's official page is incomplete in various aspects, and a lot of the functionality included in this package was found arbitrarily and through trial and error.
If you find any inconsistency with the typings provided by this package, feel free to open a Pull Request.
Twitch requires that any embeds include the URL of the parent site that embeds their content. These components will get this
parent URL through window.location.hostname for non-interactive components (those components that are essentially just an iframe),
while the interactive ones get the parent automatically (possible through the same property) by their respective constructor.
As such, you shouldn't need to specify this prop for any of the components, unless you run a particular setup with multiple domains.
The interactive components render nothing until their Twitch script has loaded, which only happens in the browser.
The non-interactive ones do render their iframe on the server, but window.location.hostname is not available there,
so the first rendered markup has no parent and the embed only becomes playable after hydration. If you server-side render
these components, pass the parent prop explicitly so the markup is correct from the start.
- Between
TwitchEmbed,TwitchPlayerandTwitchPlayerNonInteractive, which component should I choose?
Out of these components,
TwitchEmbedandTwitchPlayerare both interactive components, meaning that they expose the internal instance through their respective events. Both of these components support streams, VODs and collections, and they both react efficiently when theirchannel,video, orcollectionprops change by using the internal API instead of recreating the embed when they change. The key difference is thatTwitchEmbedcan include the live chat on streams. At the end of the day, it depends on which one you prefer.As for
TwitchPlayerNonInteractive, this component can embed streams, VODs and collections too, but it does not include an internal API. This means that channel, video or collection switching is not "smooth" and will recreate the embed. However, this component does not download anything extra, it does not create any additional nodes on the body document, so it is probably less resource heavy.
- Why are there
TwitchClipandTwitchPlayer?
TwitchClipwill only work for clips whereasTwitchPlayerwill work for VODs, collections and streams.
- I only need the chat, do I need a player too?
No,
TwitchChatis standalone. Use it on its own if you want to lay the chat out yourself, or useTwitchEmbedwithwithChatif you want Twitch to render the player and the chat side by side for you.
- I'm using multiple embeds simultaneously, why are they sticking next to each other?
In the case of
TwitchEmbedandTwitchPlayer, these components need anidprop to work because the internal API mounts its respectiveiframeinside adivqueried by itsid. These components will use a defaultidif it's not provided in their props. If you're displaying multiple embeds simultaneously then you should provide a staticid. Try not to use the name of the channel as anidbecause in the case that this prop changes, the embed will be recreated and the internal API won't be used for the channel switching.
- What does smooth switching mean?
For the
TwitchEmbedandTwitchPlayercomponents, when updating theirchannel,videoand/orcollectionprops, the player will not be recreated and instead the internal API will be used to update this data.
- When is the embed recreated?
Only when the
idor one of the options that the Twitch constructor owns changes:allowFullscreen,autoplay,muted,parent,time,hideControls, pluswithChatanddarkModeforTwitchEmbedandplaysInlineforTwitchPlayer. Media props are switched through the internal API, and everything else (event handlers,height,width,className,style, and any other prop forwarded to thediv) never recreates it. This means inline arrow functions as event handlers are safe: the latest one is always the one that gets called.
- Why isn't my embed playing?
Twitch rejects any embed whose
parentdoes not match the site that serves it, so check that the hostname you're serving from is the one being sent. Autoplay with sound is also blocked by browsers until the user interacts with the page, which is whymutedexists.
- Why isn't my embed autoplaying?
Twitch needs the embed to satisfy some minimal requirements. These requirements include style visibility, meaning that you cannot overlay anything on top of the player yourself. The
playerRef.play()method is also affected by this. For more information, check out the requirements.
You can run the tests for this package by running:
npm test
Or leave the watcher running with:
npm run test:watch
You can also get a coverage report with:
npm run test:coverage
This package requires Node.js >=20.19. Install the dependencies with npm ci to get started.
When developing, you can use Storybook as a way to check the components and test them. You can run the Storybook server with:
npm run storybook:serve
Also, make sure that your code lints and type checks properly with:
npm run lint
npm run typecheck
The distributable bundle is created with:
npm run build
Which you can validate with:
npm run lint:package
Issues and pull requests are welcome over at the repository. If you're changing the behavior of a component, please include tests and update its Storybook documentation.