tmdb-ts
TypeScript icon, indicating that this package has built-in type declarations

1.8.0 • Public • Published

tmdb-ts

Typescript library wrapper of TMDB API v3 .

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
}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.8.0
    237
    • latest

Version History

Package Sidebar

Install

npm i tmdb-ts

Weekly Downloads

315

Version

1.8.0

License

MIT

Unpacked Size

133 kB

Total Files

153

Last publish

Collaborators

  • blakejoy