DerPenz 6c361002bf Squashed commit of the following:
commit 5d38a76997
Merge: 7cccdb9 f160e23
Author: Blake <blakejoy@users.noreply.github.com>
Date:   Sat Apr 15 11:44:39 2023 -0400

    Merge pull request #22 from blakejoy/feat/add_linting

    feat - add linting and prettier

commit f160e2362c
Author: Blake Joynes <blakejoynes@gmail.com>
Date:   Sat Apr 15 11:44:00 2023 -0400

    add pre commit hook

commit 0fd8317884
Merge: bc91674 d1e87ba
Author: Blake Joynes <blakejoynes@gmail.com>
Date:   Sat Apr 15 11:41:28 2023 -0400

    add husky

commit bc91674c4b
Author: Blake Joynes <blakejoynes@gmail.com>
Date:   Sat Apr 15 11:39:24 2023 -0400

    add husky

commit d1e87ba7be
Author: Blake <blakejoy@users.noreply.github.com>
Date:   Fri Apr 14 08:48:33 2023 -0400

    Update .prettierrc

commit d064d4d86f
Author: Blake Joynes <blakejoynes@gmail.com>
Date:   Fri Apr 14 03:09:39 2023 -0400

    turn off linebreak rules

commit 06155bd323
Author: Blake Joynes <blakejoynes@gmail.com>
Date:   Thu Apr 13 21:58:41 2023 -0400

    add linting and prettier
2023-04-15 18:32:06 +02:00
2023-04-15 18:32:06 +02:00
2023-04-15 18:32:06 +02:00
2021-05-15 11:05:40 -04:00
2023-04-15 18:32:06 +02:00
2021-05-15 11:05:40 -04:00
2023-04-15 18:32:06 +02:00
2021-05-15 00:22:10 -04:00
2023-04-15 18:32:06 +02:00
2023-04-13 09:05:44 +02:00

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
}
Description
Typescript client wrapper for TheMovieDB (TMDB) v3
Readme 428 KiB
Languages
TypeScript 99.4%
JavaScript 0.6%