
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
gatsby-source-trakt-tmdb
Advanced tools
Gatsby source plugin for using data from Trakt.TV combined with TMDB on your website
This source plugin for Gatsby fetches personal statistics from Trakt.tv and optionally enhances them with metadata from TMDB. This can be used to display a list of watched movies and series with their respective posters.
gatsby-source-trakt-tmdb is compatible with gatsby-image so you can easily optimize posters and backdrop images during build time.
query {
allTraktWatchedMovie(
limit: 6
sort: { fields: last_watched_at, order: DESC }
) {
edges {
node {
last_watched_at
movie {
ids {
slug
}
}
tmdb_metadata {
title
poster {
localFile {
childImageSharp {
fluid(maxWidth: 300, maxHeight: 450, quality: 90) {
...GatsbyImageSharpFluid_withWebp
}
}
}
}
}
}
}
}
}
If a Trakt.tv movie or show doesn't have a TMDb id yet, which could be the case
when a show or movie is new, tmdb_metadata
will be null
, so make sure to
check it before using it.
To use this plugin, you have to obtain API keys for Trakt.tv and TMDB:
{
resolve: `gatsby-source-trakt-tmdb`,
options: {
traktApiKey: "TRAKT_API_KEY",
username: "YOUR_TRAKT_USERNAME",
tmdbApiKey: "TMDB_API_KEY", // optional, to fetch metadata
language: "en-US" // optional, language for metadata (e.g. titles)
limit: 10 // optional, number of items to fetch per category
},
},
Try to keep the limit below or at 10 items per category (40 items in total) to avoid rate-limits by TMDb. Limit can also be an object providing individual limits for each Trakt category:
{
limit: {
watchedMovies: 6,
watchedShows: 6,
watchlistMovies: 6,
watchlistShows: 6,
},
}
As this is my first source plugin for Gatsby, I think it has room for improvement. If you're interested in contributing, please feel free to open a pull request.
FAQs
Gatsby source plugin for using data from Trakt.TV combined with TMDB on your website
The npm package gatsby-source-trakt-tmdb receives a total of 0 weekly downloads. As such, gatsby-source-trakt-tmdb popularity was classified as not popular.
We found that gatsby-source-trakt-tmdb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.