This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const MongoClient = require("mongodb").MongoClient; | |
const ObjectID = require("mongodb").ObjectId; | |
const { v4: uuidv4 } = require("uuid"); | |
const cuid = require("cuid"); | |
const ulid = require("ulid").ulid; | |
const Snowflake = require("node-snowflake").Snowflake; | |
const KSUID = require("ksuid"); | |
const uri = process.env.MONGO_CS || "mongodb://localhost:27017"; | |
const dbName = "benchmark"; |