themoviedb-api-client
1.1.0 • Public • Published MovieDB
node.js library that makes the interaction with themoviedb.org V3 API easy.
Installation
npm install themoviedb-api-client --save
Usage
Require MovieDB and provide your themoviedb.org API KEY
const tmdb = require('themoviedb-api-client"')('your api key');
Use the api methods as you want, for example:
tmdb.searchMovie({ query: 'Alien' }).then((res) => {
console.log(res.body);
})
.catch(function(error) {
console.log(error)
});
or
tmdb.movieInfo({ id: 666}).then((res) => {
console.log(res.body);
})
.catch(function(error) {
console.log(error)
});
Available methods
All themoviedb.org API v3 methods included.
Versions
Version | Downloads (Last 7 Days) | Tag |
---|
1.1.0 | 0 | latest |
Version History
Version | Downloads (Last 7 Days) | Published |
---|
1.1.0 | 0 | |
1.0.1 | 1 | |
1.0.0 | 0 | |
Package Sidebar
Install
npm i themoviedb-api-client
Weekly Downloads