13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import { MongoClient } from "mongodb";
|
|
|
|
//figure out the options and whatnot later
|
|
const client = new MongoClient(process.env.MONGO_CONNECTION_STRING);
|
|
|
|
let store, users, income;
|
|
|
|
client.connect().then(() => {
|
|
console.log("Connected to the database");
|
|
//
|
|
});
|
|
|