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.2.1

Published

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

Downloads

30

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!!

# the old command,do not use this
npm i nhentia_downloader
  • use the new command
npm i new_nhentai_downloader

the Chinese document / 中文版文檔

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|


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)

  • Download a single comic
const nweb = require("new_nhentai_downloader");
nweb.comic_download("#504189"); // Insert the comic ID, with or without the #
  • Download multiple comics
const nweb = require('new_nhentai_downloader');
const albums = ['#504189',"#300800"]// Both " and ' can be used
nweb.comic_download(albums)

or,u can do this

const nweb = require('new_nhentai_downloader');
nweb.comic_download(['#504189','#300800']);

Customizing the Package

Currently available options:

    1. custom download path
nweb.comic_downloade('#504189',{download_path:'./a/b/'});
    1. Change user agent
nweb.comic_download('#504189',{headers:'<u headers>'});

of cause, you also can do this:

nweb.comic_download('504189',{download_path:'<path>',headers:'<headers>'});

get comic information

maybe you just want to know about comic basic information:

nweb.about_comic('#11111');
  • More features will be added to option, to view options
nweb.option_show("<u want to know the option's method name>");

about the comic_download method option:

{
  "headers":{
    "User-Agent":"",
  },
  "download_path":"./",
  "print_download_result":false,
}

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