Skip to content

Instantly share code, notes, and snippets.

@vicatcu
Created January 13, 2016 00:14
Show Gist options
  • Save vicatcu/be0dec88796daa8441e6 to your computer and use it in GitHub Desktop.
Save vicatcu/be0dec88796daa8441e6 to your computer and use it in GitHub Desktop.
return Promise.try(function () {
//return fs.readFileAsync(status.filename, 'utf8');
return MongoClient.connectAsync(MONGODB_CONNECTION_STRING)
.then(function(db){
return db.collection("downloads").findOneAsync({key: status.filename});
});
}).then(function(content) {
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment