A complete Node JS application using Express, EJS, MongoDB.
-
To get the Node server running locally:
npm init : set up a new or existing npm package
-
After initializing the npm package we intall the following
express, mongoose, mongoDB, nodemon, ejs.
We install them by using the following command
npm install --save express mongoose mongoDB nodemon ejs
- Install MongoDB Community Edition and MongoDB Compass.
First create a cluster in MongoDb and then create a user after creating a user copy the following thing from cluter and write them in nodemon.js file:
- MONGO_USER : MongoDB user name,
- MONGO_PASSWORD : Password of your user,
- MONGO_DATABASE : Name of your Database
- The code is run by
npm start
app.js
- The entry point to our application. This file defines our express server and connects it to MongoDB using mongoose. It also requires the routes and models we'll be using in the application.routes/
- This folder contains the route.models/
- This folder contains the schema definitions for our Mongoose models.views/
- This folder conatin all the EJS files(Pages) that are render.controller/
- get the requested data from the models, render the page from views and return it to the user to view in the browser.public/
- This folder contain all CSS files.