Skip to main content

The manga-collector

banner

Full Documentation

The manga-collector is a library designed to easily scrape manga content from various websites. This package is licensed under the MIT License and is fully test-covered.

Features

  • Supports Nodejs, Deno, Bun runtimes
  • Scrapes manga chapters, titles, images, and other metadata.
  • Supports multiple popular manga websites.
  • Provides a simple and intuitive API for easy integration.

Supported websites

The manga-collector currently supports the following manga websites (updating):

NOTE: By default github caches images, so it makes sense to turn off browser caching to see actual status

WebsiteStatus
ManganatoTest scrape manganato
ToonilyTest scrape toonily
MangadexTest scrape mangadex
MangaFireNot supported auto-status

How to install

The package uses JSR repository and supports Deno, Node, Bun. Installation commands you can find here https://jsr.io/@akiosarkiz/manga-collector

How to use (Node.js example)

This package contains examples of code that you can use and modify. They are located in src/examples folder.

Here is a simple example how you can use that package

import { MangaScraperFactory, MangaSource } from "@akiosarkiz/manga-collector";

const scraper = await MangaScraperFactory.make(MangaSource.MANGANATO);

console.log(await scraper.getDetailedManga("manga url here"));

// Example output
// {
// "url": "https://chapmanganato.to/manga-fy982633",
// "title": "Beauty And The Beasts",
// "status": "ongoing",
// "description": "As soon as she fell into the world of beast men, a leopard forcibly took her back to his home. Indeed, Bai Jingjing is at a complete and utter loss. The males in this world are all handsome beyond compare, while the women are all so horrid that even the gods shudder at their sight. As a first-rate girl from the modern world (she's even a quarter Russian), Bai Jingjing finds herself sitting at the center of a harem filled with beautiful men -- at the very peak of existence.",
// "genres": [
// ...
// ],
// "chapters": [
// ...
// ],
// "authors": [
// ...
// ]
// }

Available methods

MethodDescription
getDetailedMangaGet details of the manga
getDetailedChapterGet details of the chapter
getLatestUpdatesGet latest updates of mangas
searchFind the mangas by query

Contributing

Contributions are welcome! If you find any issues or would like to suggest enhancements, please submit a pull request or open an issue in the GitHub repository.