### Project Setup Requirements Source: https://github.com/helowdas/ihc_proyect_1/blob/main/README.md Lists the essential software requirements for setting up the project environment. Ensure Node.js version 14 or higher is installed. ```markdown ## Requisitos - Node.js (v14+ recomendado) - npm o yarn ``` -------------------------------- ### Development Server Command Source: https://github.com/helowdas/ihc_proyect_1/blob/main/README.md Starts the development server for live preview and hot-reloading. This command is typically defined in the package.json scripts. ```bash npm start ``` -------------------------------- ### Production Build Command Source: https://github.com/helowdas/ihc_proyect_1/blob/main/README.md Bundles the application for production deployment. This command optimizes assets and creates a production-ready build. ```bash npm run build ``` -------------------------------- ### Testing Command Source: https://github.com/helowdas/ihc_proyect_1/blob/main/README.md Executes the test suite for the project. This command runs any defined tests to ensure code quality and functionality. ```bash npm test ``` -------------------------------- ### Feature Branch Creation Source: https://github.com/helowdas/ihc_proyect_1/blob/main/README.md Creates a new Git branch for developing a new feature. This is a standard Git workflow for managing changes. ```bash git checkout -b feature/mi-mejora ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.