This project was bootstrapped with Create React App.
This project is a web application built with React for the frontend and a Node.js server for the backend. It includes scripts for development, testing, and building the application. This README file provides instructions on how to set up and use the project.
- Start the development server using the npm
start
command. - Access the application in your web browser at http://localhost:3000.
- You can begin developing your project by editing the source files in the src directory.
This project includes several npm scripts defined in the package.json
file. Here are some of the key scripts you can use:
-
Start the Development Server (Frontend and Backend):
npm `start`
This command install project dependencies and starts the frontend and backend development servers concurrently.
-
Start the Frontend Development Server:
npm run `start-frontend`
This command starts only the frontend development server.
-
Start the Backend Development Server:
npm run `start-backend`
This command starts only the backend development server.
-
Run Tests:
npm `test`
This command runs tests for the project. Use npm test:watch to run tests in watch mode.