mirror of
https://github.com/KevinMidboe/moviedb.git
synced 2025-10-29 09:40:24 +00:00
version 0.0.4
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
0.0.4 / 2012-10-29
|
||||
==================
|
||||
|
||||
* Added SSL support
|
||||
* Updated dependencies
|
||||
|
||||
|
||||
0.0.3 / 2012-08-20
|
||||
==================
|
||||
|
||||
|
||||
12
example.js
12
example.js
@@ -1,8 +1,10 @@
|
||||
var mdb = require('./lib/moviedb');
|
||||
var mdb = require('./lib/moviedb')('dc4940972c268b026150cf7be6f01d11');
|
||||
|
||||
var m = new mdb('dc4940972c268b026150cf7be6f01d11');
|
||||
|
||||
m.searchMovie({query: 'alien'}, function(err, res){
|
||||
mdb.movieInfo({id: 11}, function(err, res){
|
||||
console.log('--------','popular');
|
||||
console.log(res);
|
||||
}).miscPopularMovies({}, function(err, res){
|
||||
console.log(err);
|
||||
console.log(res);
|
||||
console.log('--------','ninja');
|
||||
console.log(res);
|
||||
});
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name" : "moviedb"
|
||||
, "description" : "Library for interacting with themoviedb.com API"
|
||||
, "version" : "0.0.3"
|
||||
, "version" : "0.0.4"
|
||||
, "keywords" : ["themoviedb","api"]
|
||||
, "directories" : { "lib" : "./lib" }
|
||||
, "main" : "index.js"
|
||||
|
||||
Reference in New Issue
Block a user