mirror of
https://github.com/KevinMidboe/moviedb.git
synced 2025-10-29 17:50:25 +00:00
45 lines
1.2 KiB
Markdown
45 lines
1.2 KiB
Markdown
MovieDB
|
|
=======
|
|
[](https://travis-ci.org/impronunciable/moviedb)
|
|
[](http://badge.fury.io/js/moviedb)
|
|
[](https://david-dm.org/impronunciable/moviedb)
|
|
[]()
|
|
|
|
node.js library that makes the interaction with themoviedb.org V3 API easy.
|
|
|
|
## Installation
|
|
```bash
|
|
npm install moviedb --save
|
|
```
|
|
## Usage
|
|
|
|
Require MovieDB and provide your themoviedb.org API KEY
|
|
```js
|
|
const MovieDB = require('moviedb')('your api key');
|
|
```
|
|
Use the api methods as you want, for example:
|
|
```js
|
|
mdb.searchMovie({ query: 'Alien' }, (err, res) => {
|
|
console.log(res);
|
|
});
|
|
```
|
|
or
|
|
```js
|
|
mdb.movieInfo({ id: 666}, (err, res) => {
|
|
console.log(res);
|
|
});
|
|
```
|
|
now you can also make chain calls
|
|
```js
|
|
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](https://github.com/impronunciable/moviedb/wiki/Library-endpoints)
|