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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@rexxhayanasi/nhentai

v1.0.2

Published

A scraper for NHentai with types

Downloads

28

Readme


NPM

TypeScript wrapper to scrape doujins and generate PDFs from NHentai and its mirror sites.

📖 Documentation: [coming soon]

🌐 Supported Sites: [https://nhentai.net|https://nhentai.to]

will be updated if there is a change in the domain from nhentai official


⚙️ Installation

yarn add @rexxhayanasi/nhentai
# or
npm install @rexxhayanasi/nhentai

⚠️ Note for nhentai.net Users

Due to Cloudflare protection on nhentai.net, follow these steps:

  1. Open nhentai.net in your browser.

  2. Open Developer Tools (DevTools).

  3. Set a custom User-Agent (you'll use this later).

  4. Wait for Cloudflare clearance (do not close DevTools).

  5. Copy the cf_clearance cookie value from the Network tab.

⏳ The cookie expires after 30 minutes of inactivity, so you may need to repeat this process if needed.


🚀 Usage Examples

import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()

;(async () => {
const { data } = await nhentai.explore()
console.log(data)
})()
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()

;(async () => {
const { data } = await nhentai.search('loli', { page: 1 })
const doujin = data[0]

const { images } = await doujin.getContents()
console.log(images.pages)

await images.PDF('loli.pdf') // Returns Buffer if no filename
})()
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai({
site: 'nhentai.net',
user_agent: 'Your Custom User-Agent',
cookie_value: 'cf_clearance=your_cookie_here'
})

;(async () => {
const { data } = await nhentai.explore()
console.log(data)
})()

or using default Cookies Npm @rexxhayanasi/nhentai (MAY NOT WORK)

import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai({
  site: 'nhentai.net',
  user_agent: 'Your Custom User-Agent'
})
//no cookie_content if this Npm has prepared manual cookies

;(async () => {
  const { data } = await nhentai.explore()
  console.log(data)
})()
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai({ site: 'nhentai.to' })
nhentai.validate('172').then(console.log)
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()
nhentai.getDoujin(172).then(console.log)
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()
nhentai.getRandom().then(console.log)
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()

nhentai.getDoujin('2456').then(async (res) => {
await res.images.download('nhentai') // Save to folder
})
import { NHentai } from '@rexxhayanasi/nhentai'

const nhentai = new NHentai()

nhentai.getRandom().then(async (res) => {
await res.images.zip('nhentai.zip') // Returns Buffer if no filename
})

📬 License & Contributions

Licensed under MIT. Feel free to open issues or contribute via pull requests!


⚠️ This is not an official NHentai API. Use responsibly.