twitch-vod-messages
v0.1.0
Published
Fetch Twitch VOD messages.
Downloads
3
Readme
twitch-vod-messages
Fetch Twitch VOD messages.
Installation
npm install twitch-vod-messages
Usage
import { createTwitchClient } from "twitch-vod-messages";
const videoId = "0123456789";
const client = await createTwitchClient(videoId);
while (true) {
const res = await client.fetchNext();
for (const node of res.nodes) {
console.log(
node.contentOffsetSeconds,
node.commenter?.displayName ?? "Anonymous",
node.message.fragments.map((f) => f.text).join(""),
);
}
if (!res.hasNextPage) {
break;
}
}
License
MIT