0.2.14 • Published 5 years ago

km-moviedb v0.2.14

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

MovieDB

Build Status NPM version Known Vulnerabilities npm

node.js library that makes the interaction with themoviedb.org V3 API easy.

Installation

npm install moviedb --save

Usage

Require MovieDB and provide your themoviedb.org API KEY

const MovieDB = require('moviedb')('your api key');

Use the api methods as you want, for example:

mdb.searchMovie({ query: 'Alien' }, (err, res) => {
  console.log(res);
});

or

mdb.movieInfo({ id: 666}, (err, res) => {
  console.log(res);
});

now you can also make chain calls

mdb
  .searchMovie({ query: 'Zoolander' }, (err, res) => {
    console.log(res);
  })
  .movieInfo({ id: 123 }, (err, res) => {
    console.log(res);
  });

Available methods

All themoviedb.org API v3 methods included. Endpoint methods are included on a wiki page