anstrmv2

1.8.7 • Public • Published

AnStrmV2

an npm package to download anime episodes for free.

UPDATE

New version of anstrm way better!

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 anstrmv2

Usage/Examples

const {DownloadEpisode} = require('anstrmv2');
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}!`));

Premade API

If your lazy like me then you can use our api to get anime data,head over to anstrm-api

License

MIT

FAQ

Question 1

Will this package be updated regularly?

Yes It will.

Question 2

Is this package illegal?

Yes it is.

Question 3

Why is anime's not working?

1 we scrape from animekisa.tv and its down know but i will always update our sources to the best of my knowledge. 2 try changing the english title to a japanese title.

Package Sidebar

Install

npm i anstrmv2

Weekly Downloads

20

Version

1.8.7

License

ISC

Unpacked Size

18.9 kB

Total Files

5

Last publish

Collaborators

  • thatfriendlyasiandev