Do not follow this link

~timharek/tmdb

ci: Add TMDB_API key
feat: Add lint and fmt rules

refs

main
browse  log 

clone

read-only
https://git.sr.ht/~timharek/tmdb
read/write
git@git.sr.ht:~timharek/tmdb

You can also use your local clone with git send-email.

JSR JSR score sourcehut

builds.sr.ht status

#TMDb

API-client for [TMDb]'s API.

[!CAUTION] This project is not finished and doesn't support all endpoints for TMDb yet.

#Example

import { Movie } from "jsr:@timharek/tmdb";

const search = await Movie.search({ query: "Spider-Man" });
// Do something with the data

const movie = await Movie.get(movieId);
Do not follow this link