summary refs log tree commit diff
path: root/src/db/db.js
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-05-29 06:17:12 +0200
committerRory& <root@rory.gay>2025-05-29 06:17:12 +0200
commit5ab3cbaa54642ada07085d1e0aa2e984dec1849a (patch)
tree51b7cc22c9db8b0fb290bf6dc1e27d7a695039d5 /src/db/db.js
parentMove middlewares out of start.js (diff)
downloadnodejs-final-assignment-5ab3cbaa54642ada07085d1e0aa2e984dec1849a.tar.xz
Allow unfree in nix flake, add mongodb-compass to devShell closure, basic mongo attempt, add test register route
Diffstat (limited to 'src/db/db.js')
-rw-r--r--src/db/db.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/db/db.js b/src/db/db.js
new file mode 100644

index 0000000..bf7ccfa --- /dev/null +++ b/src/db/db.js
@@ -0,0 +1,16 @@ +import { connect } from "mongoose"; + +export async function initDb() { + const connStr = "mongodb://root:Foxy1987@localhost/myproject"; + try { + const res = await connect(connStr); + if (res.connection.readyState === 1) { + console.log("[MONGODB] Connected successfully!"); + } else { + console.error("[MONGODB] Failed to connect to ", connStr); + } + } catch (e) { + console.error("[MONGODB] Error connecting to database!"); + throw e; + } +}