
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-myanimelist
Advanced tools

Node-MyAnimeList is a small promise based package for downloading information from MyAnimeList. Node-MyAnimeList is using Jikan.moe API and flew methods created by me specially for this package

npm i node-myanimelist
const { Mal, Jikan } = require("node-myanimelist");
// Or
import { Mal, Jikan } from 'node-myanimelist';
const auth = Mal.auth("6114d00ca681b7701d1e15fe11a4987e" /* app_id */ );
// Unoffical way to login (not recomended)
const acount = await auth.Unstable.login("username","password");
// Offical way to login (recomended)
// import pkceChallenge from "pkce-challenge";
// const pkce = pkceChallenge();
const url = auth.getOAuthUrl(pkce.code_challenge)
// Open returned url, accept oauth and use returned code to authorize
const acount = await auth.authorizeWithCode(code,pkce.code_challenge);
let search = await acount.manga.search(
"Sakurasou",
Mal.Manga.fields()
.alternativeTitles()
.startDate()
.endDate()
.synopsis()
.mean()
.rank()
.popularity()
.numListUsers()
.numScoringUsers()
.nsfw()
.genres()
.createdAt()
.updatedAt()
.mediaType()
.status()
.myListStatus(
Mal.Manga.listStatusFields()
.startDate()
.finishDate()
.priority()
.numTimesReread()
.rereadValue()
.tags()
.comments()
)
.numVolumes()
.numChapters()
.authors()
).call();
// Alternative if you don't care about choosing fields
let searchIDC = await acount.manga.search(
"Sakurasou",
Mal.Manga.fields().all()
).call();
For more detalis visit doc
FAQs
Node.js wrappers for MAL.
The npm package node-myanimelist receives a total of 50 weekly downloads. As such, node-myanimelist popularity was classified as not popular.
We found that node-myanimelist 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.