An educational platform frontend built with React, TypeScript, and Vite that provides interactive learning experiences.
- React 18
- TypeScript
- Vite
- TailwindCSS
- Chart.js
- i18next for internationalization
- Install dependencies:
npm install
- Run development server:
npm run dev
- Build for production:
npm run build
- Modern React with TypeScript
- Fast development with Vite
- Responsive design with TailwindCSS
- Data visualization using Chart.js
- Internationalization support
- Media capture capabilities
The project follows a standard Vite + React structure with TypeScript support and additional features for educational platform needs.
npm run dev
- Start development servernpm run build
- Build for productionnpm run lint
- Run ESLintnpm run preview
- Preview production build
- Vipin
Private - All rights reserved
For detailed technical documentation about Vite configuration and plugins, see:
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptions
property like this:
export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
},
})
- Replace
tseslint.configs.recommended
totseslint.configs.recommendedTypeChecked
ortseslint.configs.strictTypeChecked
- Optionally add
...tseslint.configs.stylisticTypeChecked
- Install eslint-plugin-react and update the config:
// eslint.config.js
import react from 'eslint-plugin-react'
export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
plugins: {
// Add the react plugin
react,
},
rules: {
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
},
})