An open API service indexing awesome lists of open source software.

https://github.com/ocombe/node-sickbeard

Access SickBeard API with nodeJS
https://github.com/ocombe/node-sickbeard

Last synced: 12 months ago
JSON representation

Access SickBeard API with nodeJS

Awesome Lists containing this project

README

          

node-sickbeard
==============

Access SickBeard API with nodeJS

# Installation & usage

- Download sickbeard from npm
```bash
$ npm install sickbeard
```

- Usage example :
```javascript
var sickbeard = require('sickbeard');
sickbeard = new sickbeard('http://localhost:8081', 'bfca65a13f27a312569ea69cfc52251c');
sb.api('show.seasons', {tvdbid: 72108}, function(data) {
console.log(data);
});
```