Skip to content

zadzbw/vite-react-template

Repository files navigation

vite-react-template ✏️

A vite template for creating a React App with typescript, tailwindcss, scss, eslint, prettier, vitest, husky and lint-staged.

image

Features 🎸

  • React.js as basic framework
  • tailwindcss + scss for style
  • prettier + eslint for code style
  • vitest for unit test and component test
  • husky + lint-staged for pre-commit hook

Try it now 🚀

GitHub template

Use this template to create a new repo.

Clone to local

If you prefer to do it manually with the cleaner git history, you can do the following:

  1. download the template
npx degit zadzbw/vite-react-template my-app
  1. push to your own repo
cd my-app

git init
git add .
git commit -m "commit message"
git remote add origin https://github.com/username/repositoryname.git
git push -u origin main
  1. install dependencies
npm install pnpm --global
pnpm install --frozen-lockfile

and then you can start develop your React App.