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 (or oxc when used in rolldown-vite) for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.
If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the TS template for information on how to integrate TypeScript and typescript-eslint in your project.
Before you begin, ensure you have the following installed:
- Node.js (version 14.18+ or 16+) - Download here
- npm (comes with Node.js) or yarn
- Git - Download here
Verify your installation:
node --version
npm --version
git --versiongit clone https://github.com/laysearaujo/synesthesia
cd https://github.com/laysearaujo/synesthesianpm installThis will install all required packages defined in package.json.
npm run devThe application will start at http://localhost:5173 (default Vite port).
Open your browser and navigate to the URL shown in your terminal to see the app running.
project-root/
├── node_modules/ # Dependencies
├── public/ # Static assets
├── src/ # Source files
│ ├── assets/ # Images, fonts, etc.
│ ├── components/ # React components
│ ├── App.jsx # Main App component
│ └── main.jsx # Entry point
├── index.html # HTML template
├── package.json # Project dependencies and scripts
├── vite.config.js # Vite configuration
└── README.md # This file
- React - UI library
- Vite - Build tool and dev server
- JavaScript/JSX - Programming language
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
For issues or questions, please open an issue in the GitHub repository.
Built with ⚡️ Vite and ⚛️ React