Home > tmdb

tmdb

Tmdb is a project mainly written in JavaScript, it's free.

TMDb Node.js wrapper

TMDb Wrapper for Node.js

TMDb API wrapper for Node.js users.

Wrapper can be injected with a Redis cache.

Requirements

  • request
  • redis (optional)

Samples

var tmdb = require('./tmdb').init({apikey:'yourapikey'});
tmdb.Movie.search({query: 'Transformers', year: 2007}, function(err,res) {
  for(var x in res) {
    console.log(res[x].name);
  }
});

More samples at test dir.

Project status

The library is currently deployed in production on a site I am working on. Changes and fixes are coming here as I encounter troubles but at the moment there is no active developement on new features.

All the getter methods of the API have been implemented. At the moment there is no plans to implement the setter part of the API.

Previous:gdata