
Security News
Feross on the 10 Minutes or Less Podcast: Nobody Reads the Code
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.
youtube-chat-kacesensitive
Advanced tools
[](https://badge.fury.io/js/youtube-chat-kacesensitive)  
Fetch YouTube live chat without API
This is just a commonJS implementation of LinaTsukusu's https://github.com/LinaTsukusu/youtube-chat
☢ You will need to take full responsibility for your action ☢
npm i youtube-chat-kacesensitiveyarn add youtube-chat-kacesensitiveconst { LiveChat } = require("youtube-chat-kacesensitive")
import { LiveChat } from "youtube-chat-kacesensitive"
// If channelId is specified, liveId in the current stream is automatically acquired.
// Recommended
const liveChat = new LiveChat({channelId: "CHANNEL_ID_HERE"})
// Or specify LiveID in Stream manually.
const liveChat = new LiveChat({liveId: "LIVE_ID_HERE"})
// Emit at start of observation chat.
// liveId: string
liveChat.on("start", (liveId) => {
/* Your code here! */
})
// Emit at end of observation chat.
// reason: string?
liveChat.on("end", (reason) => {
/* Your code here! */
})
// Emit at receive chat.
// chat: ChatItem
liveChat.on("chat", (chatItem) => {
/* Your code here! */
})
// Emit when an error occurs
// err: Error or any
liveChat.on("error", (err) => {
/* Your code here! */
})
// Start fetch loop
const ok = await liveChat.start()
if (!ok) {
console.log("Failed to start, check emitted error")
}
liveChat.stop()
interface ChatItem {
author: {
name: string
thumbnail?: ImageItem
channelId: string
badge?: {
thumbnail: ImageItem
label: string
}
}
message: MessageItem[]
superchat?: {
amount: string
color: string
sticker?: ImageItem
}
isMembership: boolean
isVerified: boolean
isOwner: boolean
isModerator: boolean
timestamp: Date
}
type MessageItem = { text: string } | EmojiItem
interface ImageItem {
url: string
alt: string
}
interface EmojiItem extends ImageItem {
emojiText: string
isCustomEmoji: boolean
}
Thank you!👍
FAQs
[](https://badge.fury.io/js/youtube-chat-kacesensitive)  
We found that youtube-chat-kacesensitive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins 10 Minutes or Less, a podcast by Ali Rohde, to discuss the recent surge in open source supply chain attacks.

Research
/Security News
Campaign of 108 extensions harvests identities, steals sessions, and adds backdoors to browsers, all tied to the same C2 infrastructure.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.