New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

aniplay

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aniplay

A package for serving anime information

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

AniPlay

A simple Node.js package to fetch anime streaming URLs from multiple HD servers.
Currently supports 6 HD servers you can choose from.

Installation

npm install aniplay

Example Usage:

const hd = require('aniplay');

async function test() {
  const url = await hd.fetchHD1Stream('162804', '12', 'sub');
  console.log(url);
}

test();

Source Requirements

SourceParameters
HD-1Anilist ID, Episode Number, Sub/Dub
HD-2Anilist ID, Episode Number, Sub/Dub
HD-3Anime Title, Episode Number
HD-4HiAnime Episode ID, Sub/Dub
HD-5MyAnimeList ID, Episode Number
HD-6Anime Title, Episode Number

Additional Notes

I recommend that you use HD-4 along side HD-1. HD-2 has some sort of issue on the servers end with getting episodes from that source, its just really really really really slow.

The example above provided uses HD-1, if its not in an async function you will get returned a "promise" url, an example is shown below:

Promise { '<returned url>' }

All response links are embeddable for an iframe, its an out of the box player. This does NOT scrape sites it just links to external sources for embedding!

Keywords

Anime

FAQs

Package last updated on 19 Aug 2025

Did you know?

Socket

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.

Install

Related posts