node-omdb

1.0.1 • Public • Published

node-omdb

Installation

npm install --save node-omdb

Usage

omdb.find('Forrest', 'movie').then(function (movie) {
    (movie).should.be.a.Array;
    movie[0].Title.should.be.exactly('Forrest Gump');
});
 
omdb.get('Breaking Bad', 'series').then(function (serie) {
    serie.Title.should.be.exactly('Breaking Bad');
    serie.should.have.properties({
        Response: 'True'
    });
});

Readme

Keywords

none

Package Sidebar

Install

npm i node-omdb

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • vqueiroz