UNPKG

shop

Version:
9 lines (6 loc) 252 B
import { MongoClient } from 'mongodb' const connectionString = process.env.MONGODB_CONNECTIONSTRING if (!connectionString) { throw new Error('MONGODB_CONNECTIONSTRING is not defined') } export const mongodb = new MongoClient(connectionString).db()