0.0.9 • Published 9 years ago

tmdb-3 v0.0.9

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

tmbd

TheMovieDB nodejs API wrapper Really basic, only provides '/search/:type' and '/:type/:id' methods.

For API routes list : http://docs.themoviedb.apiary.io/

var tmdb = require('tmdb-3')('YOUR_API_KEY');
	
//Searching
tmdb.search('movie', {query: 'Harry Potter', language: 'fr'}, function (err, results) {
	//Informations on first ID
	tmdb.infos('movie', results.results[0].id, {language: 'fr'}, function (err, results) {

		console.log(results);

	});
});
0.0.9

9 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago