Mocking up web app with Vital(speed)
- ⚡️ Vite 7 - Next generation frontend tooling
- ⚛️ React 19 - Latest version with improved performance
- 🦾 TypeScript 5.9 - Strongly typed JavaScript
- 🎨 Tailwind CSS v4 - Latest utility-first CSS framework with CSS-based config
- 👑 Atomic Design organization - Component architecture
- 🗂 Path aliases - Clean imports
- 😃 Hero Icons - Beautiful hand-crafted SVG icons
- 🤖 LLM-ready - Comprehensive AI assistance docs (CLAUDE.md, AGENTS.md, BUGBOT.md)
- ☁️ Deploy on Netlify or Vercel, zero-config
- ESLint 9 - Find and fix problems in JavaScript/TypeScript
- Prettier 3 - Opinionated code formatter
- Commitlint - Lint commit messages
- lint-staged - Run linters on git staged files
- TypeScript - Type safety
- @vitejs/plugin-react - Official React plugin for Vite
- PostCSS - Transform CSS with JavaScript
- Netlify / Vercel - Zero-config deployment
Create a repo from this template on GitHub.
If you prefer to do it manually with the cleaner git history
npx degit jvidalv/vital my-vital-app
cd my-vital-app
yarn # If you don't have yarn installed, run: npm install -g yarnWhen you use this template, try follow the checklist to update your info properly
- Rename
nameandauthorfields inpackage.json - Change the author name in
LICENSE - Change the title in
index.html - Change the favicon in
public - Modify the manifest in
public - Clean up the README's
And, enjoy :)
Just run and visit http://127.0.0.1:3000/
yarn devTo build the App, run
yarn buildAnd you will see the generated file in dist that ready to be served.
Go to Netlify and select your repository, OK along the way, and your App will be live in a minute.
Go to Vercel and select your repository, Vercel will detect Vite automatically and configure the build settings for you. Your App will be live in a minute.
Note: Both platforms automatically detect Vite projects and configure:
- Build Command:
yarn build - Output Directory:
dist - Install Command:
yarn install
I have created several React apps recently. Setting the configs up is kinda the bottleneck for me to make the ideas simply come true within a very short time.
So I made this starter template for myself to create apps more easily, along with some good practices that I have learned from making those apps. Feel free to tweak it or even maintains your own forks.
