@dvcol/tmdb-http-client
TypeScript icon, indicating that this package has built-in type declarations

1.3.10 • Public • Published

@dvcol/tmdb-http-client

donate

Simple fetch based http client for TMDB API with full typescript support (request and response).

Prerequisites

  • pnpm >=9.0.0
  • node >=20.0.0

Install

pnpm install

Usage

pnpm add @dvcol/tmdb-http-client

Modular endpoint bundling

Tmdb-http-client is designed to be modular and flexible. Although it uses static classes, endpoints are instantiated at runtime and can be easily omitted, extended or overridden. If your bundler does not support tree-shaking, you can omit unused endpoints by only importing the ones you need.

By default we provide a full api object with all supported endpoints, as well as a minimal api object with only the essential authentication endpoints. You can also import any endpoint by common scope.

import { TmdbClient } from '@dvcol/tmdb-http-client';

import { minimalTmdbApi } from '@dvcol/tmdb-http-client/api/minimal';
import { movies } from '@dvcol/tmdb-http-client/api/v3/movies';
import { shows } from '@dvcol/tmdb-http-client/api/v3/shows';
import { Config } from '@dvcol/tmdb-http-client/config';

import type { TmdbClientSettings } from '@dvcol/tmdb-http-client/models';

export const api = {
  ...minimalTmdbApi,
  v3: {
    movies,
    shows,
  },
};

export const settings: TmdbClientSettings = {
  endpoint: Config.endpoint,
  apiKey: '<Your api ID>',
  readToken:'<Your read token>',
  requestTokenTTL: Config.requestTokenTTL,

  useragent: '<Your user Agent>',
  corsProxy: '<Optional cors Proxy>',
  corsPrefix: '<Optional cors Proxy prefix>',
};

const authenticaiton = {}

const client = new TmdbClient(settings, authenticaiton, api);

Features

Documentation

See Tmdb API documentation for more information.

Author

📝 License

This project is MIT licensed.

Package Sidebar

Install

npm i @dvcol/tmdb-http-client

Weekly Downloads

12

Version

1.3.10

License

MIT

Unpacked Size

817 kB

Total Files

366

Last publish

Collaborators

  • dvcol