Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

all-debrid-api

TheBeastLT173MIT1.2.0

Node AllDebrid API wrapper

alldebrid, debrid

readme

Usage example

npm install all-debrid-api --save
const AllDebridClient = require('all-debrid-api')
const AD = new AllDebridClient('Your API Token')

AD.magnet.instant(['infoHash1', 'infoHash2']).then(results => console.log(results));
AD.link.infos('some-link').then(results => console.log(results));
PM.magnet.upload('someMagnetLink').then(results => console.log(results));