Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.39 KB

README.md

File metadata and controls

42 lines (34 loc) · 1.39 KB
NPM Install Info

NPM Version NPM Downloads Deps

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