mongonow
v1.0.1
Published
Allows you to start using MongoDB commands right away, outside the connection callback
Readme
MongoNow
Tiny wrapper around the MongoDB driver to allow immediate usage of database commands without needing to store state or wrap everything in a callback.
Installation
$ npm i mongonowUsage
const client = require("mongonow")(url) // replace url with your MongoDB url
// you can now use mongodb as usual:
const db = client.db("mydatabase")
db.collection("users").find().toArray().then(users => console.log(users))