0.2.1 • Published 5 years ago
@oculushealth/mongo v0.2.1
@oculushealth/mongo
MongoDB package that is used in the Oculushealth projects.
Example usage
import {
  connect,
  disconnect,
  getDatabase,
  getCollection,
  generateId
} from "@oculushealth/mongo";
(async function() {
  await connect();
  const Users = await getCollection("users");
  const user = await Users.findOne({});
  await Users.insert({
    _id: generateId()
    /* Other fields */
  });
  await disconnect();
})();