@tiktikimelbo7/extensions
Version:
Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.
121 lines (96 loc) • 4.73 kB
Markdown
<p align="center"><img src="https://consumet.org/images/consumetlogo.png" width="175"/></p>
<h1 align="center"> consumet.ts </h1>
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.
<p align="center">
<a href="https://www.npmjs.com/package/@consumet/extensions">
<img src="https://img.shields.io/npm/v/@consumet/extensions" alt="npm (scoped)">
</a>
<a href="https://github.com/consumet/consumet.ts/actions/workflows/npm-publish.yml">
<img src="https://github.com/consumet/consumet.ts/actions/workflows/npm-publish.yml/badge.svg" alt="npm (scoped)">
</a>
<a href="https://discord.gg/qTPfvMxzNH">
<img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="Prs are welcome">
</a>
<a href="https://discord.gg/qTPfvMxzNH">
<img src="https://img.shields.io/discord/987492554486452315?color=7289da&label=discord&logo=discord&logoColor=7289da" alt="Discord">
</a>
<a href="https://github.com/consumet/consumet.ts/blob/master/LICENSE">
<img src="https://img.shields.io/npm/l/@consumet/extensions" alt="GitHub">
</a>
</p>
<h2> Table of Contents </h2>
- [Quick Start](
- [Installation](
- [Usage](
- [Documentation](
- [Ecosystem](
- [Provider Request](
- [Contributing](
- [Support](
- [Contributors ✨](
- [Credits](
- [License](
To use consumet.ts in your project, run:
```bash
yarn add @consumet/extensions
```
**Example** - searching for a book using the libgen provider.
```ts
import { BOOKS } from "@consumet/extensions"
// Create a new instance of the Libgen provider
const books = new BOOKS.Libgen();
// Search for a book. In this case, "Pride and Prejudice"
const data = books.search('pride and prejudice').then(data => {
// print results
console.log(data)
})
```
**Exmaple** - searching for anime using the gogoanime provider.
```ts
import { ANIME } from "@consumet/extensions"
// Create a new instance of the Gogoanime provider
const gogoanime = new ANIME.Gogoanime();
// Search for an anime. In this case, "One Piece"
const results = gogoanime.search("One Piece").then(data => {
// print results
console.log(data);
})
```
Do you want to know more? Head to the [`Getting Started`](https://github.com/consumet/consumet.ts/tree/master/docs/guides/getting-started.md).
- [`Getting Started`](./docs/guides/getting-started.md)
- [`Guides`](https://github.com/consumet/consumet.ts/tree/master/docs)
- [`Anime`](./docs/guides/anime.md)
- [`Manga`](./docs/guides/manga.md)
- [`Books`](./docs/guides/books.md)
- [`Movies`](./docs/guides/movies.md)
- [`Light Novels`](./docs/guides/light-novels.md)
- [`Comics`](./docs/guides/comics.md)
- [`Meta`](./docs/guides/meta.md)
- [`News`](./docs/guides/news.md)
- [Rest-API Reference](https://docs.consumet.org/) - public rest api documentation
- [Examples](https://github.com/consumet/consumet.ts/tree/master/examples) - examples of using consumet.ts.
- [Provider Status](https://github.com/consumet/providers-status/blob/main/README.md) - A list of providers and their status.
- [Changelog](https://github.com/consumet/consumet.ts/blob/master/CHANGELOG.md) - See the latest changes.
- [Discord Server](https://discord.gg/qTPfvMxzNH) - Join our discord server and chat with the maintainers.
Make a new [issue](https://github.com/consumet/consumet.ts/issues/new?assignees=&labels=provider+request&template=provider-request.yml) with the name of the provider on the title, as well as a link to the provider in the body paragraph.
Check out [contributing guide](https://github.com/consumet/consumet.ts/blob/master/CONTRIBUTING.md) to get an overview of consumet.ts development.
You can contact the maintainers of consumet.ts via [email](mailto:consumet.org@gmail.com), or [join the discord server](https://discord.gg/qTPfvMxzNH) (Recommended).
<a href="https://discord.gg/qTPfvMxzNH">
<img src="https://discordapp.com/api/guilds/987492554486452315/widget.png?style=banner2">
</a>
Thanks to the following people for keeping this project alive and thriving.
[](https://github.com/consumet/consumet.ts/graphs/contributors)
- [Enime API](https://github.com/Enime-Project/api.enime.moe) - Used as a caching layer for the meta/anilist provider to speed up responses.
Licensed under [MIT](./LICENSE).