React: fast developing with Vite

Date: 2022-12-13

https://vitejs.dev

# this command does not work?!
#npm create vite@latest my-app -- --template react-ts

# but this one does:
npx create-vite  my-app -- --template react-ts

# or:
mkdir my-app
cd my-app
git init
npx create-vite . -- --template react-ts
npm i --save-dev vite-plugin-checker
# or add to package.json command
#"start": "concurrently --kill-others \"tsc --noEmit --watch\" \"vite\"",

https://vite.dev/guide/features.html#transpile-only

https://github.com/fi3ework/vite-plugin-checker

70860cookie-checkReact: fast developing with Vite