🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

anime-search

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anime-search

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

2.2.6
latest
Source
npm
Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

Coverage Status Github Builds Vulnerabilities Downloads Open Issues License 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!

Keywords

anime

FAQs

Package last updated on 19 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts