mangaindo-scraper
v1.0.1
Published
Just a simple MangaIndo Scraper, no more
Downloads
14
Maintainers
Readme
MangaIndo-Scraper
Just a simple mangaindo scraper, no more
npm i mangaindo-scraper
Example
- Code
const { Manga } = require("mangaindo-scraper");
/**
* Get ALl Manga that return 20 manga as default
* use @params page to get other page manga list
* use @params limit set manga length (default 20)
* @type number
*/
Manga.getManga(1,1)
.then((manga) => console.log(manga))
.catch((err) => console.log(err));
- Response
{
page: 1,
total: 20,
manga_list: [
{
title: "Peerless Soul",
thumb: "https://i0.wp.com/komiku.co.id/wp-content/uploads/Manhua-Peerless-Soul.jpg?resize=450,235&quality=60",
type: "Manhua",
updated_on: "28 menit lalu Berwarna",
endpoint: "peerless-soul/",
chapter: "Chapter 146"
},
]
}
for more example, you can check here