Skip to content

kkarikos/tmdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TMDb Wrapper for Node.js

TMDb API wrapper for Node.js users.

Wrapper can be injected with a Redis cache.

Requirements

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.

About

TMDb Node.js wrapper

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published