1.0.5 • Published 3 years ago
node-tenor v1.0.5
node-tenor
A Node package for the tenor.com RESTful api.
Example
import { TenorClient } from "node-tenor";
async function main() {
const client = new TenorClient();
const { results } = await client.fetchTrending({ limit: 10 });
console.log(results);
}
main();