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
- Host: GitHub
- URL: https://github.com/zebp/node-tenor
- Owner: zebp
- License: unlicense
- Created: 2021-05-18T15:53:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-20T21:09:20.000Z (almost 4 years ago)
- Last Synced: 2025-04-02T05:49:34.619Z (about 2 months ago)
- Topics: nodejs, tenor, typescript
- Language: TypeScript
- Homepage:
- Size: 122 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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();
```