JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://player.twitch.tv/js/embed/v1.js"></script>
<div id='player'></div>
JavaScript
const options = {
width: 400,
height: 300,
player:"amazon_live",
channel: "monstercat"
};
const player = new Twitch.Player('player', options);
player.addEventListener(Twitch.Player.READY, () => {
console.log(player.getPlaybackStats())
});