Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

anime-search

MDxWARRIORxOP155MIT2.2.6TypeScript support: included

An anime search engine that scrapes data from famous anime sites to find your favorite anime.

anime, anime-search, anime-search-engine, search

readme

Coverage Status Github Builds Vulnerabilities Downloads Open Issues License anime search

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.

  • 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

License

MIT

Contributing

Contributions are always welcome!

Open a pr if you have a feature request.
Open an issue if you encounter any bugs.

Thanks!

changelog

Version 2.2.6

Added the source folder to npm files.

Version 2.2.5

Aligned the badges on top of the readme.

Version 2.2.4

Added CHANGELOG.md

Improved README.md