Code Monkey home page Code Monkey logo

nhentai-api's Introduction

L2 Studio - NHentai API

A library for nhentai.net http web api

Install

npm install --save @l2studio/nhentai-api
# or
pnpm i @l2studio/nhentai-api

API

By default, the constructor does not need parameters.

import { NHentaiAPI } from '@l2studio/nhentai-api'

class NHentaiAPI(opts?: Options)

Options

type Options = {
  timeout?: number    // http request timeout (optional)
  userAgent?: string  // http request User-Agent header (optional)
  cookie?: string     // http request cookie (optional)
  proxy?: {           // http proxy (optional)
    host: string      //      proxy host (required)
    port: number      //      porxy port (required)
  }
}

.fetch

/**
 * Fetch gallery data from the given gallery id.
 * 
 * @param id - Gallery id
 * @return Gallery
 */
NHentaiAPI.prototype.fetch(id: number): Promise<Gallery>

.fetchRelated

/**
 * Fetch related gallery data from the given gallery id.
 * 
 * @param id - Gallery id
 * @return Gallery[]
 */
NHentaiAPI.prototype.fetchRelated(id: number): Promise<Gallery[]>

.fetchAll

/**
 * Fetch galleries data from the given page.
 * 
 * @param page - Number of pages (optional)
 * @return Galleries
 */
NHentaiAPI.prototype.fetchAll(page?: number): Promise<Galleries>

.search

/**
 * Search gallery data from the given query and page.
 * 
 * @param query - Search query value
 * @param page  - Number of pages (optional)
 * @return Galleries
 */
NHentaiAPI.prototype.search(query: string, page?: number): Promise<Galleries>

.searchByTag

/**
 * Search gallery data from the given tag id and page.
 * 
 * @param tagId - Gallery tag id
 * @param page  - Number of pages (optional)
 * @return Galleries
 */
NHentaiAPI.prototype.searchByTag(tagId: number, page?: number): Promise<Galleries>

.stringifyImageUrl

/**
 * Stringify the given gallery and image data into image url.
 * 
 * @param galleryMediaId - Gallery object or media id
 * @param imageName      - Gallery page number or cover and thumb
 * @param imageSuffix    - Gallery image or image type and suffix
 * @param isPreview      - Whether is a preview image (optional)
 * @return Stringify image url
 */
NHentaiAPI.prototype.stringifyImageUrl(
  galleryMediaId: Gallery | number,
  imageName: ImageName,
  imageSuffix: Image | ImageType | ImageSuffix,
  isPreview?: boolean
): string

.fetchImage

/**
 * Fetch image from the given gallery and image data.
 * 
 * @param galleryMediaId - Gallery object or media id
 * @param imageName      - Gallery page number or cover and thumb
 * @param imageSuffix    - Gallery image or image type and suffix
 * @param isPreview      - Whether is a preview image (optional)
 * @return {
 *   data: Duplex        - Got stream
 *   headers: any        - Response headers
 * }
 */
NHentaiAPI.prototype.fetchImage(
  galleryMediaId: Gallery | number,
  imageName: ImageName,
  imageSuffix: Image | ImageType | ImageSuffix,
  isPreview?: boolean
): Promise<{ data: Duplex, headers: any }>

.fetchImageAsBuffer

/**
 * Fetch image and as buffer from the given gallery and image data.
 * 
 * @param galleryMediaId - Gallery object or media id
 * @param imageName      - Gallery page number or cover and thumb
 * @param imageSuffix    - Gallery image or image type and suffix
 * @param isPreview      - Whether is a preview image (optional)
 * @return {
 *   data: Buffer        - Image buffer
 *   headers: any        - Response headers
 * }
 */
NHentaiAPI.prototype.fetchImageAsBuffer(
  galleryMediaId: Gallery | number,
  imageName: ImageName,
  imageSuffix: Image | ImageType | ImageSuffix,
  isPreview?: boolean
): Promise<{ data: Buffer, headers: any }>

License

Apache-2.0

nhentai-api's People

Contributors

lgou2w avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

basocakep291

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.