https://github.com/parthasarathy27/notes-taking-app
Explore seamless note-taking with this MERN stack application! Create, edit, and delete notes effortlessly. Our app includes basic user authentication for a personalized experience, ensuring secure access to your notes. Enhance productivity with a straightforward and user-friendly interface. Start organizing your thoughts today!
https://github.com/parthasarathy27/notes-taking-app
expressjs mern-stack mongodb nodejs reactjs
Last synced: 10 months ago
JSON representation
Explore seamless note-taking with this MERN stack application! Create, edit, and delete notes effortlessly. Our app includes basic user authentication for a personalized experience, ensuring secure access to your notes. Enhance productivity with a straightforward and user-friendly interface. Start organizing your thoughts today!
- Host: GitHub
- URL: https://github.com/parthasarathy27/notes-taking-app
- Owner: parthasarathy27
- License: mit
- Created: 2024-03-02T07:56:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-07T04:24:33.000Z (about 1 year ago)
- Last Synced: 2025-03-28T22:41:42.530Z (11 months ago)
- Topics: expressjs, mern-stack, mongodb, nodejs, reactjs
- Language: JavaScript
- Homepage: https://notes-taking-app-sigma.vercel.app
- Size: 255 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Note-Taking-App # MERN STACK
## Overview
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.
## Features
- **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.
## Technologies Used
- **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.
## Getting Started
Follow these steps to set up and run the Note-Taking App locally:
1. **Clone the Repository:**
```bash
git clone https://github.com/your-username/note-taking-app.git
cd note-taking-app
```
2. **Install Dependencies:**
```bash
# Install server dependencies
cd server
npm install
# Install client dependencies
cd ../client
npm install
```
3. **Configure Environment Variables:**
Create a `.env` file in the `server` directory and set the following variables:
```env
PORT=3001
MONGO_URI=your_mongodb_connection_string
```
4. **Run the Application:**
```bash
# Start the server (from the server directory)
npm start
# Start the client (from the client directory)
npm start
```
5. **Open in Browser:**
Visit [http://localhost:3000](http://localhost:3000) in your web browser to access the Note-Taking App.
## Screenshots
### Login/Register


### Home Page

### Create Note

### Edit Note

## Contributing
If you'd like to contribute to this project, please follow the [contribution guidelines](CONTRIBUTING.md).🖥️
### Happy Coding!