0.0.5 • Published 9 years ago

node-sonarr v0.0.5

Weekly downloads
1
License
GPL v2
Repository
github
Last release
9 years ago

node-sonarr

Node interface for Sonarr.

Not properly tested yet

Work In Progress.

Usage example

var sonarr = require('node-sonarr');

var sn = new CouchPotato({
	url: '<host:port>', 
	apikey: '<APIKEY>', 
	debug: true
	});

sn.status().then(function(res) {
	// Data in res
});

sn.series().then(function(res) {
    // Data in res
});

sn.history().then(function(res) {
    // Data in res
});

sn.calendar().then(function(res) {
    // Data in res
});

For now there only exists these functions. For more information about the API calls, click here

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago