### Starting Development Server with npm start - Shell Source: https://github.com/codelytv/typescript-ddd-example/blob/master/src/apps/backoffice/frontend/README.md Runs the React application in development mode using the Create React App built-in server. Opens the app in the browser and enables hot-reloading on code changes. Requires Node.js and npm installed. ```shell npm start ``` -------------------------------- ### Building for Production with npm run build - Shell Source: https://github.com/codelytv/typescript-ddd-example/blob/master/src/apps/backoffice/frontend/README.md Builds the application for production deployment, outputting static files to the 'build' folder. Optimizes and minifies the code for best performance. Requires Node.js and npm installed. ```shell npm run build ``` -------------------------------- ### Ejecting from Create React App with npm run eject - Shell Source: https://github.com/codelytv/typescript-ddd-example/blob/master/src/apps/backoffice/frontend/README.md Removes the single build dependency from Create React App and copies all configuration files (webpack, Babel, ESLint, etc.) into the project. This operation is irreversible and gives full control over the build setup. Requires Node.js and npm installed. ```shell npm run eject ``` -------------------------------- ### Running Tests with npm test - Shell Source: https://github.com/codelytv/typescript-ddd-example/blob/master/src/apps/backoffice/frontend/README.md Launches the test runner provided by Create React App in interactive watch mode. Allows developers to run unit tests and see results as code changes. Requires Node.js, npm, and configured tests. ```shell npm test ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.