
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Library for receiving global Twitch emotes as well as Twitch channel emotes. Support for third-party providers is included.
Node.js library for getting global emotes as well as channel emotes.
It supports 4 providers:
$ npm i emotelib
import EmoteLib from "emotelib";
// "client_id" and "access_token" are needed to convert the username into a user ID.
const emotes = new EmoteLib({
client_id: "123456789abcdef",
access_token: "123456789abcdef"
});
// Getting the channel emotes by name:
console.log(await emotes.twitch.getChannelEmotes("ilotterytea"));
console.log(await emotes.betterttv.getChannelEmotes("ilotterytea"));
console.log(await emotes.frankerfacez.getChannelEmotes("ilotterytea"));
console.log(await emotes.seventv.getChannelEmotes("ilotterytea"));
// Also, you can get the channel emotes by user ID:
// NOTE: Entering the user ID as a number will cause an error. Make it a string.
console.log(await emotes.twitch.getChannelEmotes("191400264"));
console.log(await emotes.betterttv.getChannelEmotes("191400264"));
console.log(await emotes.frankerfacez.getChannelEmotes("191400264"));
console.log(await emotes.seventv.getChannelEmotes("191400264"));
console.log(await emotes.twitch.getGlobalEmotes());
console.log(await emotes.betterttv.getGlobalEmotes());
console.log(await emotes.frankerfacez.getGlobalEmotes());
console.log(await emotes.seventv.getGlobalEmotes());
FAQs
Library for receiving global Twitch emotes as well as Twitch channel emotes. Support for third-party providers is included.
We found that emotelib 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.