KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
node-tmdb
★ 79
Open GitHub ↗
node.js implementation of tmdb v3 API
Download README (.md)
Explore Similar Repositories
sharpbrake
:
Airbrake Notifier for .NET
tunctl
:
Erlang TUN/TAP interface
furnace-avm2
:
Flash ActionScript3 VM static analysis library based on Furnace framework.
mutter
:
the tiny command-line interface library with lots of style~
mutt-ical
:
answer/display ical invitations with mutt
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
node-tmdb
?
Download (.md)
### Installation ``` npm install --save tmdbv3 ``` ### Usage ```js const tmdb = require('tmdbv3').init(key); tmdb.misc.latest((err ,res) => { console.log(res.title); }); tmdb.movie.info(5, (err ,res) => { console.log(res.title); }); tmdb.person.info(109, (err ,res) => { console.log(res.name); }); // setting french as default language... tmdb.setLanguage('fr'); // and resetting to english. tmdb.resetLanguage(); ``` etc. All methods live right now (2012-08-08) implemented. Testing is done by mocha. See [the TMDb page about the API](https://www.themoviedb.org/documentation/api) or [view the full API](http://docs.themoviedb.apiary.io/) ### Other For TMDb's old v2.1 api, go to [kkarikos repo] (https://raw.github.com/kkarikos/tmdb). kkariko: I used part of your request code here, contact me if you have questions, I can't find a way to contact you.