Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 967 Bytes

README.md

File metadata and controls

62 lines (39 loc) · 967 Bytes

Note Keeper App

Alt text

Technologies Used

  • Frontend: Vite, React
  • Backend: Node.js, Express
  • Database: MongoDB

Features

  • 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.

Getting Started

Installation

  1. Clone the Repository:

    git clone https://github.com/yourusername/note-keeper-app.git
    cd note-keeper-app
    
  2. Frontend Setup:

     cd client
     npm install
     npm run dev
    
  3. Backend Setup:

     cd server
     npm install
    
  4. Create a .env file with your MongoDB connection string:

 MONGODB_URI=your_mongodb_connection_string
  1. Start the server:
  npm start

Usage