Browse Source

mongodb

main
clement callaert 2 years ago
parent
commit
921a7220f5
  1. 4
      data/database.js

4
data/database.js

@ -5,10 +5,12 @@ const MongoClient = mongodb.MongoClient;
let database;
async function connectToDatabase() {
const client = await MongoClient.connect('mongodb://0.0.0.0:27017')
const url = 'mongodb://127.0.0.1:27017/BDE'; // Ajout du nom de la base de données
const client = await MongoClient.connect(url);
database = client.db('BDE');
}
function getDb() {
if (!database) {
throw { message: 'You must connect first!' };

Loading…
Cancel
Save