node-tenor.js
v1.0.2
Published
Simple node.js wrapper for using tenor api.
Downloads
2
Readme
node-tenor.js
node.js library for using tenors public API. Making it easy to: search for GIFs, get the most recent trending GIFs and much more!
Installation
npm install node-tenor.js
Documentation
Coming soon! Plus pro dev's use the source code.
Example
const TenorClient = require('node-tenor.js');
const client = new TenorClient('API_KEY');
client.search('funny')
.then((gif) => {
console.log(gif);
})
.catch((error) => {
console.log(error);
});
API Key
To get an API key register for an one at the following site: https://tenor.com/developer/keyregistration
Author
Author: iColtz