1.1.2 • Published 5 years ago

open-movie-database-api v1.1.2

Weekly downloads
7
License
MIT
Repository
github
Last release
5 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

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago