You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/QuillDev/doujin-scraper.git
cd doujin-scraper
npm install
Example Usage
constdoujinscraper=require("./doujin-scraper/nhentaiscraper");//the method is async so you need to await itasyncfunctiongetDoujins(){//get top 5 doujins for the query "bakemonogatari"constdoujins=awaitdoujinscraper.getTop("bakemonogatari");console.log(doujins);}