anime-search
v2.2.6
Published
An anime search engine that scrapes data from famous anime sites to find your favorite anime.
Downloads
22
Maintainers
Readme
Anime-Search
An anime search engine that uses various sites to find anime.
Features
Fast.
Scrapes in under 300 milliseconds.
Tiny.
9KB unpacked.
Open Source.
Checkout the repo @ https://github.com/MDxWARRIORxOP/anime-search
Free.
No charges applied. No API keys required.
Installation
Install anime-seach with any package manager for node.
npm install anime-search
# or yarn
yarn add anime-search
Documentation
Check out the docs at https://mdxwarriorxop.github.io/anime-search/
Usage/Examples
const animeSearch = require("anime-search");
// or esm
import animeSearch from "anime-search";
animeSearch("naruto").then(console.log);
// or if you want to be platform specific
const { getAnimeFromZoro, getAnimeFromFreak } = require("anime-search");
// or esm
import { getAnimeFromZoro, getAnimeFromFreak } from "anime-seach";
getAnimeFromZoro("sword art online").then(console.log);
// and
getAnimeFromFreak("dragon slayer").then(console.log);
// async example
(async () => {
const data = await animeSearch("Hunter x Hunter");
console.log(data);
})();
Contributors
@Kingerious_ - The API.
@ViggoBF - The logo.
License
Contributing
Contributions are always welcome!
Open a pr if you have a feature request.
Open an issue if you encounter any bugs.
Thanks!