1.0.2 • Published 8 years ago

twemote v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

twemote

the easy way to get twitch emotes

Note: this uses lots of ES6.

Example to download the small discordWumpking emote and save it

const request = require('superagent');
const twemote = require('./twemote');
const fs = require('fs')

twemote('discordWumpking').then(url => {
  request.get(url).pipe(fs.createWriteStream('discordWumpking.png'));
}).catch(console.log)