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 🙏

© 2024 – Pkg Stats / Ryan Hefner

new_nhentai_downloader

v2.3.11

Published

u can easy to download nhentai comic by use this module!

Downloads

191

Readme

nhentai-comic-crawler

A program for downloading comics using simple node.js

[!Note]

The old package has been deprecated

now u can use the new version to download comic!!

  • use the new command
npm i new_nhentai_downloader

or use bun

bun add new_nhentai_downloader

Features

  • download comic on nhentai by use comic ID

Update Log (Current Status: Maintenance)

|Date|Version|Updates and Maintenance| |----|-------|----| |2024-05-23|v1.0.0|Initial release| |2024-05-30|v1.0.1 ~ v1.0.2|Regular maintenance| |2024-06-17|v2.0.1 ~ v2.0.2|Refactored code for better scalability, added npm support| |2024-06-20|v2.0.3 ~ v2.0.4|Updated documentation, fixed issue where comics were downloaded into node_modules| |2024-06-24|v2.0.5 ~ v2.0.6|Upadte English version document,and fix some promble| |2024-07-07|v2.0.7 ~ v2.0.8|fix the document name error| |2024-07-07|v2.1.0 ~ v2.1.2|Avoiding the use of classes to make the code more readable and simplified| |2024-07-25|v2.2.0 - v2.2.1|fix some promble and add jsDoc| |2024-11-09|v2.2.1 - v2.3.0|fix some bug and update markdown| |2024-11-09|v2.3.0 - 2.3.11|update markdown|


In Progress

*Login and Favorites

Preparation

  1. Ensure node.js is installed on your computer
  2. Install the necessary package from npm
npm i new_nhentai_downloader

Quick Start (Copy the code below according to your needs after installing the package)

import this package

for js

const nhentai = require('new_nehntai_downloader').default;

for ts

import nehntai from 'new_nehentai_downloader'
  • Just download single comic
const nhentai = require("new_nhentai_downloader").default;
nhentai.dl('comicID','dlPath')
  • Download multiple comics
const nhentai = require('new_nhentai_downloader').default;
const albums = ['#504189',"#300800"]// Both " and ' can be used
const path = './my_comic'
nhentai.dl(albums,path)

or,u can do this

const nhentai = require('new_nhentai_downloader').default;
nhentai.dl(['#504189','#300800'],'./my_comic');

Get API use this package

get doujin api(information)

nhentai.doujinAPI('1234').then(console.log).catch(console.error);

search artist or doujin key word

nhentai.searchAPI('waterring').then(console.log).catch(console.error);

get artist's all doujins

nehntai_artistAPI('waterring').then(console.log).catch(console.error);

have fun

Miscellaneous

Other convenient features are under development, and the project is currently in maintenance.

If you have any questions or suggestions, please provide them in the issues section.

This project is for research and academic purposes only and is not intended for commercial use.

Author: archie0732