- Home
- Javascript
- Understand the Folder Structure
Understand the Folder Structure
Contents
Understand the Folder Structure
ExpenseTracker/ # Name of the project
├── node_modules/ # Stores installed project dependencies
├── public/ # Contains static files
├── src/ # Main source code folder
│ ├── assets/ # Stores project assets
│ ├── components/ # Contains reusable React components
│ │ └── expenseTracker.jsx # Main Expense Tracker component
│ ├── App.css # Styles for App component
│ ├── App.jsx # Parent component of the application
│ ├── index.css # Global styles
│ └── main.jsx # Entry point of the React application
├── .gitignore # Specifies files ignored by Git
├── eslint.config.js # ESLint configuration file
├── index.html # Main HTML file
├── package-lock.json # Locks dependency versions
├── package.json # Project metadata and dependencies
├── README.md # Project documentation
└── vite.config.js # Vite configuration file










