open-movie-database-api
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

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);
    });

Readme

Keywords

none

Package Sidebar

Install

npm i open-movie-database-api

Weekly Downloads

1

Version

1.1.2

License

MIT

Unpacked Size

35.8 kB

Total Files

16

Last publish

Collaborators

  • gosuhiman