omdbapiwrapper
v1.0.0
Published
A wrapper for the ombd api
Downloads
2
Readme
Open Movie Database Api Wrapper
A simple js wrapper for the omdb api (The Open Movie Database)
Install
npm install omdbapi
Example
Promise
var omdb = require('omdbapi');
omdb.search('pulp fiction')
.then(function(result){
console.log(results);
})
callbacks
var omdb = require('omdbapi');
omdb.search('pulp fiction', function(results) {
console.log(results);
})