0.0.4 • Published 9 years ago

node-nzbget v0.0.4

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

node-couchpotato

Node interface for CouchPotato.

Not properly tested yet

Work In Progress.

Usage example

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

var ng = new nzbget({
	url: '<host:port>', 
	username: '<username>',
    password: '<password>',
	});

ng.version().then(function(res) {
	// data in res
});

ng.history().then(function(res) {
    // data in res
});

ng.listgroups().then(function(res) {
    // data in res
});

ng.listfiles().then(function(res) {
    // data in res
});

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