https://github.com/ramirezjm/little_lemon_meta_capstone
Little Lemon / Capstone Project / Meta Front-End Development Specialization
https://github.com/ramirezjm/little_lemon_meta_capstone
css3 html5 javascript react react-router responsive-design
Last synced: about 2 months ago
JSON representation
Little Lemon / Capstone Project / Meta Front-End Development Specialization
- Host: GitHub
- URL: https://github.com/ramirezjm/little_lemon_meta_capstone
- Owner: RamirezJM
- License: mit
- Created: 2025-06-18T02:09:21.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-09T03:14:31.000Z (12 months ago)
- Last Synced: 2025-09-21T02:57:30.853Z (9 months ago)
- Topics: css3, html5, javascript, react, react-router, responsive-design
- Language: JavaScript
- Homepage: https://ramirezjm.github.io/Little_Lemon_Meta_Capstone/
- Size: 3.98 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Little Lemon
### Capstone project / Meta Front-End Development Specialization
The React app is built with Vite. It features a responsive design, form validation, and simulated API interactions for reservations.
Visit the page : https://ramirezjm.github.io/Little_Lemon_Meta_Capstone/
[](https://choosealicense.com/licenses/mit/)




## Getting Started
Follow these steps to get the project up and running on your local machine.
### Prerequisites
Make sure you have [Node.js](https://nodejs.org/en/download/) installed. I used the version 22.14.0 (which includes npm).
1. **Clone the repository:**
```bash
git clone [YOUR_REPOSITORY_URL_HERE]
cd [YOUR_PROJECT_FOLDER_NAME] # e.g., cd final_project
```
*(Remember to replace `[YOUR_REPOSITORY_URL_HERE]` and `[YOUR_PROJECT_FOLDER_NAME]` with your actual repo URL and project directory name.)*
2. **Install dependencies:**
```bash
npm install
```
This command will install all the necessary packages listed in `package.json`.
---
## Running the Application
To start the development server and view the application locally:
```bash
npm run dev
```
## Running Tests
To execute the project's test suite (powered by Jest and React Testing Library):
```bash
npm test
```
This will run all tests and display the results in your terminal.
(It contains 2 unit tests (component deployment and updateTime function))