An open API service indexing awesome lists of open source software.

https://github.com/zebp/node-tenor

A NodeJS wrapper for the https://tenor.com/ REST api
https://github.com/zebp/node-tenor

nodejs tenor typescript

Last synced: about 2 months ago
JSON representation

A NodeJS wrapper for the https://tenor.com/ REST api

Awesome Lists containing this project

README

        

# node-tenor

![npm](https://img.shields.io/npm/v/node-tenor)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/zebp/node-tenor/Node.js%20CI)
![NPM](https://img.shields.io/npm/l/node-tenor)

A Node package for the tenor.com RESTful api.

## Example

```typescript
import { TenorClient } from "node-tenor";

async function main() {
const client = new TenorClient();
const { results } = await client.fetchTrending({ limit: 10 });

console.log(results);
}

main();
```