7TV Rest API
An API wrapper for the 7TV Rest API to use with Node.js.
💾 Install
npm install 7tv-rest
📚 Usage
const SevenTV = require('7tv-rest')
const emotes = await SevenTV.getGlobalEmotes();
emotes.forEach(emote => console.log(emote.id));
const user = await SevenTV.getUser('melanx');
console.log(user.display_name);