16d9f7d7a0da282ef10bb7dda1e9969259cacbb3
tmdb-ts
Typescript library wrapper of TMDB API v3 .
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
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
}
I want to try to keep this as up to date as possible. So please message me if you are looking to help contributing :)
Description
Languages
TypeScript
99.4%
JavaScript
0.6%