netflix-roulette
v1.0.2
Published
NetflixRoulette API Wrapper Module
Maintainers
Readme
NetflixRoulette Node.js API
A very simple, fully-functional Node wrapper for NetflixRoulette's API that I wrote for some practical experience with Node. Add this module as a dependency in your Node project to access NetflixRoulette with a few easy-to-use functions.
Instructions
###Install
Use npm install netflix-roulette in your Node.js project folder.
This will create a new node_modules folder if one does not already exist. Add it to your dependencies in package.json.
###Require
var NetflixRoulette = require('netflix-roulette');
###Use
The API currently has three parameters, title, actor and director. This module allows you to query any of them through rather intuitive functions. Since it is an open API, you do not need keys or authentication of any sort.
NetflixRoulette.title('Tucker & Dale vs. Evil', callbackFunc(error, data), 2010);
[year parameter is optional]NetflixRoulette.actor('Keira Knightley', callbackFunc(error, data));NetflixRoulette.director('Christopher Nolan', callbackFunc(error, data));
The error value is set only when there is a problem requesting data from the API. Any errors in finding the data will be reported in the data variable with error == null.
Refer to NetflixRoulette's API guide for details on returned data.
Contact
Report any bugs from the Issues section.
If you have any questions, contact me @Antrikshy. You can reach, Andrew, the developer of NetflixRoulette @CodeusaSoftware.
