https://github.com/noelrohi/simkl-node
A node.js wrapper for Simkl API
https://github.com/noelrohi/simkl-node
Last synced: 2 months ago
JSON representation
A node.js wrapper for Simkl API
- Host: GitHub
- URL: https://github.com/noelrohi/simkl-node
- Owner: noelrohi
- Created: 2024-04-27T08:32:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T14:10:45.000Z (about 1 year ago)
- Last Synced: 2025-03-19T22:49:37.406Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# simkl-node
A Node.js wrapper for the [Simkl API](https://api.simkl.com).
## Installation
```bash
npm install simkl-node
```## Usage
```ts
import { Anime } from "simkl-node/anime";const anime = new ANIME('YOUR_CLIENT_ID');
// Get the top anime series
const trends = await anime.trending();
```