ConnectU is a web app built with React that makes it easy to create fast, data-driven applications.
app/– Main app code (pages, components, styles, data loading)public/– Static files like icons or imagespackage.json– List of dependencies and scripts you can runvite.config.ts/react-router.config.ts– Build and routing settings (you usually don’t need to touch these at first)
- Install dependencies**
npm install
- Run the app in development**
Then open your browser and go to:
npm run dev
http://localhost:5173
npm run dev– Start the app for developmentnpm run build– Create an optimized production buildnpm run start– Run the built app with Nodenpm run typecheck– Check the code for TypeScript errors
To create a production build:
npm run buildThis generates a build/ folder with everything needed to deploy the app.
Then open http://localhost:3000 in your browser.
Built with ❤️ using React, Tailwind CSS, JavaScript, HTML and TypeScript.