Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing MongoDB Connection Import in server.js #35

Open
Tushar260603 opened this issue Mar 26, 2024 · 0 comments
Open

Missing MongoDB Connection Import in server.js #35

Tushar260603 opened this issue Mar 26, 2024 · 0 comments

Comments

@Tushar260603
Copy link

In the server.js file of our project, there's an essential component missing: the import statement for MongoDB connection. This oversight could potentially lead to runtime errors or issues when attempting to interact with the database.

Expected Behavior:
There should be an import statement for the MongoDB connection module/library.

Actual Behavior:
The import statement for MongoDB connection is missing.

Proposed Solution:

Server.js
import express from "express";
import cors from "cors";
import records from "./routes/record.js";
import dotenv from "dotenv"
import conn from "./db/connection.js"; //importing conn function from db/conncection.js file
const PORT = process.env.PORT || 5050;
const app = express();
dotenv.config();
app.use(cors());
app.use(express.json());
app.use("/record", records);

// start the Express server
app.listen(PORT, () => {
conn(); //add this for connecting to database
console.log(Server listening on port ${PORT});
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant