UNPKG

mongolux

Version:

A light node.js mongodb wrapper. No schemas, no magic, just plain node.js.

9 lines (6 loc) 189 B
'use strict' const MongoClient = require('mongodb').MongoClient module.exports = async function (uri, opts = {}) { const client = new MongoClient(uri, opts) return client.connect() }