This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
- A React.js application (i.e., the frontend SPA)
- A dummy backend API to which the React app can "talk" (to send + fetch data)
Thereafter, you can start the dummy backend API server via "npm start" (inside the "backend" folder). The React app dev server is then started via "npm run dev".
The dummy backend API does not use any external database - instead the dummy data is saved to an "events.json" file inside the project folder.