0.0.1 • Published 5 years ago

aria2rpc v0.0.1

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
5 years ago

Aria2RPC

The Aria2 RPC library written in TypeScript running on Node.js.

Installation

$ npm i aria2rpc

Usage

import { Aria2Client } from 'aria2rpc';

const client = new Aria2Client({
    secret: 'your secret'
});

(async () => {
    const response = client.getGlobalStat();
    console.log(response.result); // Aria2 Global Status
})()