1.1.2 • Published 6 years ago

open-movie-database-api v1.1.2

Weekly downloads
7
License
MIT
Repository
github
Last release
6 years ago

omdb-api CircleCI

OMDb API client for node.js

Usage

const OmdbApiClient = require('open-movie-database-api').OmdbApiClient;
const client = new OmdbApiClient(<your-registered-api-key>);

client.get('Star Wars')
    .then(result => {
        console.log(result);
    });

client.search('Star Wars')
    .then(result => {
        console.log(result);
    });
1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago