joelhenryclark123 / tmdb-ts

Typescript client wrapper for TheMovieDB (TMDB) v3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

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
}

About

Typescript client wrapper for TheMovieDB (TMDB) v3

License:MIT License


Languages

Language:TypeScript 96.8%Language:JavaScript 3.2%