kenzuya e32ed16a48 build(config): update TypeScript module resolution and type roots
Changed moduleResolution from 'node' to 'bundler' for modern bundler compatibility and expanded typeRoots to include Node.js types from node_modules/@types, improving type discovery and ensuring proper TypeScript compilation in the current environment.
2025-09-30 17:39:26 +07:00
2025-06-17 10:24:36 -05:00
2025-08-13 21:19:46 -04:00
2024-06-09 11:25:34 -04:00
2024-06-09 17:03:27 -04:00
2023-04-25 22:56:07 -04: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

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