Skip to content

Instantly share code, notes, and snippets.

@ShawonAshraf
Created August 3, 2019 20:18
Show Gist options
  • Select an option

  • Save ShawonAshraf/8f60ddd8a3f5d20fcc1645180dc845b1 to your computer and use it in GitHub Desktop.

Select an option

Save ShawonAshraf/8f60ddd8a3f5d20fcc1645180dc845b1 to your computer and use it in GitHub Desktop.
Code for mongodb-nodejs-medium article
const readAllDocs = async(db) => {
try {
const docs = await db.collection('games').find({});
return docs.toArray();
} catch (e) {
console.log(e.toString());
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment