![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Simple and User-Friendly API for rule34 paheal.
Recommended for REST API, Bots, Sites
$ npm install paheal
// in async function
const paheal = require('paheal')
const API = new paheal
// Get a Random Doujin
await API.search().then(search => console.log(search.results))
// Get a indicated Doujin
await API.getMedia(1).then(media => console.log(media))
// Searching
await API.byAuthor('dev').then(search => console.log(search.results))
// Next Page
const search = await API.search('devil')
const nextPage = await search.next()
console.log(nextPage.results)
Returns the not full object of a doujins.
Param Type Description tags string Tags into Search Usage example:
// in async function const search = await paheal.search('devil') console.log(search.results)
Returns: Promise<Search model object>
Param Type Description id string/number ID of Media Post Usage example:
// in async function const media = await paheal.getMedia(1) console.log(media.href)
Returns: Promise<Media model object>
Returns the not full object of a doujins.
Param Type Description name string Find posts by some Author Usage example:
// in async function const search = await paheal.byAuthor('noname') console.log(search.results)
Returns: Promise<Search model object>
{
author: String,
tags: String[],
src: String,
href: String
}
searchResult {
results: Array<SearchResult>
lastPage: Number,
currentPage: Number
}
{
id: Number,
tags: String[],
href: String
}
In a Node.JS 15.x, reject use a strict mode. So, when Promise returns a reject, your app crashes.
So, my library is user-friendly, and i don't want crash your app, if some wrong. So, how you can catch a errors?
For Example:
// in async function
let doujin = await sHentai.getDoujin(0)
if (doujin.status) return console.error(doujin.message);
And, your app don't be crashes :)
MIT License
Copyright © Mikun Hatsune
FAQs
Simple and user-friendly Wrapper of Rule 34 Paheal
The npm package paheal receives a total of 0 weekly downloads. As such, paheal popularity was classified as not popular.
We found that paheal demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.