Retrieve movie information via IMDb. Features module component as well as CLI.
-
Install via npm.
$ npm i -S movieman
-
Movieman supports both Promises and error-first callbacks. Use whichever you prefer.
const movieman = require('movieman'); movieman.getMovie().by.title('the social network', (err, res) => { if (err) throw err; console.log(res); //=> http://www.omdbapi.com/?t=the%20social%20network&i=tt0096895&plot=short&r=json }); movieman.getMovie().by.id('tt0468569') .then((resp) => { console.log(resp) //=> http://www.omdbapi.com/?i=tt0468569&plot=short&r=json }) .catch((e) => { throw e; });
- Install globally via npm.
$ npm i -g movieman
$ movieman --help
Usage
$ movieman <title> [--help] [--version]
Options
-h --help Display this help dialog.
-v --version Display the current version.
Example
$ movieman the social network