- Frontend: Vite, React
- Backend: Node.js, Express
- Database: MongoDB
- Add Note: Create a new note with a title and content.
- Update Note: Modify the content or title of an existing note.
- Delete Note: Remove a note from the list.
-
Clone the Repository:
git clone https://github.com/yourusername/note-keeper-app.git cd note-keeper-app
-
Frontend Setup:
cd client npm install npm run dev
-
Backend Setup:
cd server npm install
-
Create a .env file with your MongoDB connection string:
MONGODB_URI=your_mongodb_connection_string
- Start the server:
npm start
- Open http://localhost:5173 in your browser.
- Add, update, or delete notes using the app interface.