node-nasa
Node.js library for NASA's Open API
http://data.nasa.gov/api-info/
** This is work in progress
Usage
var nasa = new NASA();
nasa.getRecentDatasets(10, function(error, response){
console.log(error, response)
});
nasa.search('planet', function(error, response){
console.log(error, response)
});
nasa.getDataset(619, function(error, response){
console.log(error, response)
});
nasa.getDateDatasets('2011-10', 20, function(error, response){
console.log(error, response)
});
nasa.getIndex('category', function(error, response){
console.log(error, response)
});
nasa.getCategoryDatasets('earth-science', 20, function(error, response){
console.log(error, response)
});
nasa.getTagDatasets('apollo', 25, function(error, response){
console.log(error, response)
});