initial commit

This commit is contained in:
Dan Zajdband
2012-05-16 20:32:25 -03:00
commit a951072182
8 changed files with 268 additions and 0 deletions

7
example.js Normal file
View File

@@ -0,0 +1,7 @@
var mdb = require('./lib/moviedb');
var m = new mdb('yout api key');
m.searchMovie({query: 'alien'}, function(err, res){
console.log(res);
});