This project is a comprehensive blog application built using the MERN (MongoDB, Express.js, React, Node.js) stack. It includes a user login system, a showcase of the blog's appearance, and a step-by-step guide on how to create your own blog.
Features
1)User Login: Secure user authentication with password encryption.
2)Showcase: A detailed look at the blog's design and functionality.
3)Creation Guide: Instructions on how to set up and create your own blog using the MERN stack.
The user can perform CRUD operations and can see the blogs posted by others.
2)Now After creating the blog it looks like this.

3)How to we can create the blog.

Add your MONGODB ATLAS URI in **.env-example** in backend folder
Rename the .env-example file to **.env**
npm run dev
(concurrently run server and client)
or
npm run server (only run backend)
npm run client (only run frontend)
npm --prefix backend start (node)
or
npm --prefix backend run server (with nodemon)
or
cd backend
npm install
npm start
npm --prefix frontend run client
or
cd frontend
npm install
npm run dev
