Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@francescodevalerio/tmdb-ts

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@francescodevalerio/tmdb-ts

TMDB v3 library wrapper

  • 1.8.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

tmdb-ts

Typescript library wrapper of TMDB API v3 .

Forked from tmsb-ts! Thanks!

Version npmnpm Downloads

This uses new jwt authentication token for requests so there is no need to append api key to the url. Once you have registered for access to the api you can use your access token as follows:

Installation: npm install --save tmdb-ts

Version 1.0 removed the default import so make sure you update accordingly!

import { TMDB } from 'tmdb-ts';

const tmdb = new TMDB('accessToken');

try {
   const movies = await tmdb.search.movies({ query: 'American Pie' });
   console.log(movies);
} catch(err) {
   // handle error
}

Keywords

FAQs

Package last updated on 18 May 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc