consumet.ts
consumet.ts is a Node library which provides high-level APIs to get information about several entertainment mediums like books, movies, comics, anime, manga, etc.
Table of Contents
Quick Start
Installation
To use consumet.ts in your project, run:
yarn add @consumet/extensions
Usage
Example - searching for a book using the libgen provider.
import { BOOKS } from "@consumet/extensions"
const books = new BOOKS.Libgen();
const data = books.search('pride and prejudice').then(data => {
console.log(data)
})
Exmaple - searching for anime using the gogoanime provider.
import { ANIME } from "@consumet/extensions"
const gogoanime = new ANIME.Gogoanime();
const results = gogoanime.search("One Piece").then(data => {
console.log(data);
})
Do you want to know more? Head to the Getting Started
.
Documentation
Ecosystem
Provider Request
Make a new issue with the name of the provider on the title, as well as a link to the provider in the body paragraph.
Contributing
Check out contributing guide to get an overview of consumet.ts development.
Support
You can contact the maintainers of consumet.ts via email, or join the discord server (Recommended).
Contributors ✨
Thanks to the following people for keeping this project alive and thriving.
Credits
- Enime API - Used as a caching layer for the meta/anilist provider to speed up responses.
License
Licensed under MIT.