blog-content

This is a blog posting web application built in node.js and express.js where mongodb is used as the database.

Screen Recording

2024-06-07.17-37-20.mp4

Prerequisites

Install Node JS

Refer to https://nodejs.org/en/download to install nodejs


Running the Application at localhost

Clone the project into local

git clone https://github.com/Suryanshm000/blog-content.git

Install all the npm packages. Go into the project folder and type the following command to install all npm packages

npm install

Before running the server create the .env file and add your mongodb database connection string into CONNECTION_STRING variable

CONNECTION_STRING=<your mongodb driver connection string>

In order to run the application type the following command

npm start

The Application runs on localhost:3000