🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

jdownloader-client

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jdownloader-client

Node.js JDownloader client, written in TypeScript based in [jdownloader-api](https://www.npmjs.com/package/jdownloader-api).

1.0.0
latest
npm
Version published
Weekly downloads
10
150%
Maintainers
1
Weekly downloads
 
Created
Source

jdownloader-client

Node.js JDownloader client, written in TypeScript based in jdownloader-api.

Installation

npm i --save jdownloader-client

Usage

const { JDownloaderClient } = require('jdownloader-client')

async function main() {
  const client = new JDownloaderClient('<email>', '<password>')
  await client.connect()
  const devices = await client.listDevices()
  const downloadLinks = await client.downloadsQueryLinks(devices[0].id)
  console.log(downloadLinks)
}

main()
  .then(() => console.log('Done'))
  .catch(err => console.error(err))

Implemented methods

Keywords

JDownloader

FAQs

Package last updated on 19 Feb 2018

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