Socket
Socket
Sign inDemoInstall

ez-movie-node

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ez-movie-node

A TMDb API wrapper


Version published
Weekly downloads
1
Maintainers
1
Install size
514 kB
Created
Weekly downloads
 

Readme

Source

ez-movie-node - A TMDb API wrapper

ez-movie-node is a TMDb API wrapper. I designed this because other Javascript or Node packages are quite outdated (the most recent is from August 2017) so I thought I make one on my own to accomodate recent updates.

The package is still Work in Progress, so don't expect everything to work correctly (see notes below).

Installation

npm i ez-movie-node

importing the package

const EZMovie = require("ez-movie-node")
const ezmovie = new EZMovie(YOUR_API_KEY)

Making a fetch call

const main = async () => {
  const response = await ezmovie.certification.movie({})
  const body = await response.json()

  // OR

  ezmovie.ceritifcaiton.movie({})
  .then(res => res.json())
  .then(body => // do stuff)
}

As you can see the methods are promises so either doing .then() or await works. Don't forget to catch errors.

NOTE: Right now there is a problem within the system which prevents running methods which have optional query parameters. If you pass nothing into the method it will error. To prevent erroring always pass an empty object (you can leave methods which don't have any parameters empty). This will be fixed and you won't see this message in the future.

For instance ezmovie.certification.movie has no optional parameters so doing ezmovie.certification.movie() is valid.

Fetch call on a method with required parameters

// ezmovie.company.details has 1 required parameter (just like in the API documentation)
// company_id: integer

// This is how you make a call like this
const main = async () => {
  const response = await ezmovie.company.details({ company_id: 5})
  const body = await response.json()
}

Documentation

The methods are inline with the way the API documentation from TMDb is structured. Please see there for information on what parameters you need to pass in.

Available methods

endpointmethods
certificationmovie
tv
changesmovie
tv
person
collectiondetails
images
translations
companydetails
alternativeNames
images
configurationAPIConfiguration
countries
jobs
languages
primaryTranslations
timezones
creditsdetails
discovermovie
tv
findfindByID
genremovies
tv
keyworddetails
movies

Half of the endpoints are missing (WIP). Also only get requests are allowed.

Example

endpoint = keyword method = movies

ezmovie.keyword.movies()

Roadmap

  • Implementing the missing endpoints
  • Better error handling
  • Fixing the weird empty object bug

Keywords

FAQs

Last updated on 26 May 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc