tenor-fetch
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

tenor-fetch

A library that lets you access the Tenor API. What's Tenor? A GIF search engine.

Rad?

Tenor in action

Yeah. Totally rad.

Also, you should totally check out my rad start-up, Tutturu.tv 👏

Installation

npm install --save tenor-fetch

Getting started

You'll need an API key from Tenor: https://tenor.com/gifapi

const TenorFetch = require('tenor-fetch');
 
const tf = new TenorFetch('YOUR-TENOR-API-KEY');
 
// Search "smug anime" on Tenor
tf.search('smug anime').then(console.log);
 
// Find trending GIFs on Tenor
tf.trending().then(console.log);

API

Check out the endpoints here: https://tenor.com/gifapi/documentation#endpoints

This project is written in TypeScript so you can let IntelliSense guide you.

The library is pretty straightforward: if you're lost just glance at the source.

Tests

npm run test

Contributing

Before you make a merge request, please:

  1. Run npm run lint and npm run format
  2. Ensure all existing tests pass
  3. Add tests for your additions (if applicable)

Thanks! 💖

Acknowledgements

Inspired from @giphy/js-fetch-api.

I try my best to match the API. We have promises, but I can't promise you anything (haha).

Regarding the source code, I'm a total noob and I just followed the instructions here. Sorry.

Readme

Keywords

Package Sidebar

Install

npm i tenor-fetch

Weekly Downloads

2

Version

1.0.2

License

MIT

Unpacked Size

8.38 kB

Total Files

4

Last publish

Collaborators

  • scottyfillups