ani_dl

1.1.0 • Public • Published

AnStrm

an npm package to download anime episodes for free.

Acknowledgements

  • downloading or streaming anime without paying or without license is illegal, Please be careful using this package.
  • direct download links will not be provided.

Authors

lets get to the point

Installation

  npm install anstrm

Usage/Examples

const {DownloadEpisode} = require('anstrm');
const express = require('express');
const app = express();
const port = process.env.PORT || 3000;
app.get('/', (req, res) => {
    res.send("an free api to scrape anime");
});
app.get('/download/:name/:episode', async (req, res) => {
    var name = req.params.name;
    var episode = req.params.episode;
    var url = await DownloadEpisode(name,episode);
    res.send(url);
});
app.listen(port, () => console.log(`Example app listening on port ${port}!`));

License

MIT

FAQ

Question 1

Will this package be updated regularly?

Yes It will.

Question 2

Is this package illegal?

Yes it is but who give a fu## about it.

Question 3

Why is some anime's not working?

  1. try using japenese title instead of english title.

Things to do

  • add a streaming function to stream anime.

Package Sidebar

Install

npm i ani_dl

Weekly Downloads

1

Version

1.1.0

License

MIT

Unpacked Size

4.76 kB

Total Files

4

Last publish

Collaborators

  • ali_aku