This Note-Taking App is a simple web application built using the MERN stack (MongoDB, Express.js, React, Node.js). The primary goal of the application is to allow users to create, edit, and delete notes. Additionally, basic user authentication has been implemented to enable users to save and access their own notes securely.
- User Authentication: Secure user authentication ensures that each user has a private space for their notes.
- Create Notes: Users can easily create new notes with a title and content.
- Edit Notes: Users have the ability to edit their existing notes, providing a seamless editing experience.
- Delete Notes: Unwanted notes can be easily deleted, maintaining a clutter-free workspace.
- MongoDB: For storing and managing the notes data.
- Express.js: As the backend framework to handle server-side operations.
- React: For building a dynamic and responsive user interface.
- Node.js: To run the server and handle server-side logic.
Follow these steps to set up and run the Note-Taking App locally:
-
Clone the Repository:
git clone https://github.com/your-username/note-taking-app.git cd note-taking-app
-
Install Dependencies:
# Install server dependencies cd server npm install # Install client dependencies cd ../client npm install
-
Configure Environment Variables: Create a
.env
file in theserver
directory and set the following variables:PORT=3001 MONGO_URI=your_mongodb_connection_string
-
Run the Application:
# Start the server (from the server directory) npm start # Start the client (from the client directory) npm start
-
Open in Browser: Visit http://localhost:3000 in your web browser to access the Note-Taking App.
If you'd like to contribute to this project, please follow the contribution guidelines.🖥️