0.1.1 • Published 5 years ago

@jc21/radarr-api v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Radarr API Client

See: https://github.com/Radarr/Radarr/wiki/API

Usage

const Radarr = require('@jc21/radarr-api').Radarr;

let r = new Radarr('https://USER:PASS8@radarr.example.com', 'APIKEY');

r.movies()
    .then(result => {
        console.log(result);
    })
    .catch(err => {
        console.error('ERR:', err);
    });

Compiling

npm install
tsc --project tsconfig.build.json