Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konsalex/floating-focus-repro
https://github.com/konsalex/floating-focus-repro
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/konsalex/floating-focus-repro
- Owner: konsalex
- Created: 2023-08-15T11:54:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-15T13:30:02.000Z (over 1 year ago)
- Last Synced: 2024-10-30T09:26:18.302Z (2 months ago)
- Language: JavaScript
- Size: 86.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vite + React + Testing
Uses [Vite](https://vitejs.dev/), [Vitest](https://vitest.dev/), and [React Testing Library](https://github.com/testing-library/react-testing-library) to create a modern [React](https://react.dev/) app compatible with [Create React App](https://create-react-app.dev/)
![Vite + React + Testing](https://user-images.githubusercontent.com/927220/179299319-6357c886-d220-4cfd-beff-f3ffbbf9ee89.png)
Using TypeScript? See the [TypeScript template](https://github.com/nickmccurdy/vite-react-testing-typescript).
## Goals
- Easy migration from Create React App or Vite
- As beginner friendly as Create React App
- Optimized performance compared to Create React App
- Customizable without ejecting## Scripts
- `dev`/`start` - start dev server and open browser
- `build` - build for production
- `preview` - locally preview production build
- `test` - launch test runner## Inspiration
- [Create React App](https://github.com/facebook/create-react-app/tree/main/packages/cra-template)
- [Vite](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react)
- [Vitest](https://github.com/vitest-dev/vitest/tree/main/examples/react-testing-lib)