Skip to content

Instantly share code, notes, and snippets.

@jeffyuhaoliu
Created September 6, 2013 17:02
Show Gist options
  • Save jeffyuhaoliu/6466633 to your computer and use it in GitHub Desktop.
Save jeffyuhaoliu/6466633 to your computer and use it in GitHub Desktop.
Node.js MongoDB HW#3.2
posts.insert(post, function(err, doc){
if (!err) {
console.log("Inserted new post");
return callback(null, permalink);
}
return callback(err, null)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment