ani_dl
v1.1.0
Published
An npm package to get info about anime and get urls to watch and download anime episode for free!
Downloads
3
Maintainers
Readme
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
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?
- try using japenese title instead of english title.
Things to do
- add a streaming function to stream anime.