npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

animob

v1.0.2

Published

Node.js library for streaming anime, reading manga, and accessing anime/manga metadata through multiple providers.

Readme

Installation

npm install animob

or

yarn add animob

Quick Start

Anime Streaming

import { ANIME } from 'animob';

// Search for anime
const animePahe = new ANIME.AnimePahe();
const results = await animePahe.search('Naruto');
console.log(results);

// Get anime details
const info = await animePahe.fetchAnimeInfo(results.results[0].id);
console.log(info);

// Get episode sources
const sources = await animePahe.fetchEpisodeSources(info.episodes[0].id);
console.log(sources);

Manga Reading

import { MANGA } from 'animob';

// Search for manga
const mangadex = new MANGA.MangaDex();
const results = await mangadex.search('One Piece');
console.log(results);

// Get manga details
const info = await mangadex.fetchMangaInfo(results.results[0].id);
console.log(info);

// Get chapter pages
const pages = await mangadex.fetchChapterPages(info.chapters[0].id);
console.log(pages);

Anime/Manga Metadata

import { META } from 'animob';

// Search anime/manga database
const anilist = new META.Anilist();
const results = await anilist.search('Demon Slayer');
console.log(results);

// Get detailed information
const info = await anilist.fetchAnimeInfo(results.results[0].id);
console.log(info);

Available Providers

Anime

  • AnimePahe - Anime streaming with multiple quality options
  • Hianime - High-quality anime streaming (uses anizen.tr mirror)
  • AnimeSaturn - Italian anime provider with global access
  • AnimeKai - Anime streaming provider
  • KickAssAnime - Anime streaming with various sources
  • AnimeUnity - Italian anime streaming
  • AnimeSama - French anime streaming

Manga

  • MangaDex - Official manga reading platform
  • MangaKakalot - Popular manga provider
  • MangaPill - Manga reading with multiple sources
  • MangaReader - Extensive manga library
  • Comick - Comic and manga provider
  • AsuraScans - Scanlation group provider
  • WeebCentral - Manga aggregator
  • MangaHere - Manga reading platform

Movies & TV

  • FlixHQ - Movies and TV shows
  • DramaCool - Asian dramas
  • Goku - Movie streaming
  • SFlix - Movies and series

Metadata

  • Anilist - Comprehensive anime/manga database
  • MAL - MyAnimeList integration
  • TMDB - The Movie Database

Usage Examples

Get Trending Anime

import { META } from 'animob';

const anilist = new META.Anilist();
const trending = await anilist.fetchTrendingAnime();
console.log(trending);

Stream Anime Episode

import { ANIME } from 'animob';

const hianime = new ANIME.Hianime();

// Search
const search = await hianime.search('One Piece');

// Get info
const info = await hianime.fetchAnimeInfo(search.results[0].id);

// Get episode sources
const episode = info.episodes[0];
const sources = await hianime.fetchEpisodeSources(episode.id);

console.log('Stream URL:', sources.sources[0].url);

Read Manga Chapter

import { MANGA } from 'animob';

const mangadex = new MANGA.MangaDex();

// Search
const search = await mangadex.search('Solo Leveling');

// Get info
const info = await mangadex.fetchMangaInfo(search.results[0].id);

// Get chapter pages
const chapter = info.chapters[0];
const pages = await mangadex.fetchChapterPages(chapter.id);

console.log('Pages:', pages);

Provider Status

Verified Working

  • ✅ AnimePahe
  • ✅ Hianime (anizen.tr)
  • ✅ AnimeSaturn
  • ✅ MangaDex
  • ✅ Anilist

Other Providers

Other providers are included but may have varying reliability depending on your location and network.

Building from Source

# Clone the repository
git clone https://github.com/dksmadboy/animob.git
cd animob

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

API Reference

Common Methods

All providers implement these base methods:

Anime Providers

  • search(query: string) - Search for anime
  • fetchAnimeInfo(id: string) - Get anime details
  • fetchEpisodeSources(episodeId: string) - Get streaming sources

Manga Providers

  • search(query: string) - Search for manga
  • fetchMangaInfo(id: string) - Get manga details
  • fetchChapterPages(chapterId: string) - Get chapter pages

Meta Providers

  • search(query: string) - Search database
  • fetchAnimeInfo(id: string) - Get anime information
  • fetchMangaInfo(id: string) - Get manga information

TypeScript Support

Animob is written in TypeScript and includes type definitions out of the box.

import { ANIME, MANGA, META, IAnimeResult, IMangaResult } from 'animob';

const results: IAnimeResult[] = await new ANIME.AnimePahe().search('Naruto');

Contributing

Contributions are welcome! Please feel free to submit issues or pull requests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Credits

Built on top of consumet.ts with improvements and verified providers.

Disclaimer

This library is for educational purposes only. Please support official releases and respect copyright laws in your country.