A simple MERN (MongoDB, Express.js, React, Node.js) notes app for managing your notes.
This MERN Notes App is designed to help you manage and organize your notes efficiently. It uses a modern tech stack to provide a seamless user experience.
Before you begin, ensure you have met the following requirements:
-
Node.js: Make sure you have Node.js installed. You can download it from nodejs.org.
-
MongoDB: You will need a MongoDB instance. You can set up one locally or use a cloud-hosted solution like MongoDB Atlas.
-
Clone the repository:
git clone https://github.com/atanu3000/MERN_Notes_App.git
-
Navigate to the repository
cd MERN_Notes_App
-
Install server dependencies
cd server npm i
-
Install frontend dependencies
cd ../frontend npm i
-
Setup your MongoDB connection by creating the
.env
file in yourserver
directory with your MongoDB URLcd ../server echo 'dbURL="your_mongodb_uri_here"' > .env
-
Start the server
npm run dev
-
Start the frontend (in a separate terminal)
cd frontend npm run dev