Front-end: React.js
Back-end: Node.js
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Runs the backend server.
It will run at http://localhost:3001 by defaults.
The server will reload if you make edits.
You will also see any lint errors in the console.
- Open
src/index.tsx
- Change the server mode
enum ServerMode {
production = "production",
test = "test",
}
// Server mode will be here
const mode = ServerMode.production; // or Servermode.test
You can learn more in the Create React App documentation.
To learn React, check out the React documentation.