Home > tmdb.js

tmdb.js

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

A node.js library for the excellent TMDB API

tmdb.js

A node.js library for the excellent TMDB API

Usage

var tmdb = require('./tmdb');
var movie = new tmdb.movie('yourkey');
movie.search('Tron', {year: '2010'}, function(err, movies){
    console.log(movies);
});
Previous:sja