Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabien-ml/react-ts-vite-template
React TypeScript template with Vite
https://github.com/fabien-ml/react-ts-vite-template
Last synced: 27 days ago
JSON representation
React TypeScript template with Vite
- Host: GitHub
- URL: https://github.com/fabien-ml/react-ts-vite-template
- Owner: fabien-ml
- License: mit
- Created: 2021-08-31T13:43:35.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-13T10:17:32.000Z (over 1 year ago)
- Last Synced: 2024-07-31T22:37:31.159Z (3 months ago)
- Language: TypeScript
- Size: 972 KB
- Stars: 120
- Watchers: 3
- Forks: 30
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# React TypeScript template with Vite
This is a [React](https://reactjs.org) + [TypeScript](https://www.typescriptlang.org/) boilerplate built with [Vite](https://vitejs.dev).
## What's inside?
- [ReactJS](https://reactjs.org)
- [Vite](https://vitejs.dev)
- [TypeScript](https://www.typescriptlang.org)
- [Jest](https://jestjs.io)
- [Testing Library](https://testing-library.com)
- [Cypress](https://www.cypress.io)
- [ESLint](https://eslint.org)
- [Prettier](https://prettier.io)
- [Polyfills](https://github.com/vitejs/vite/tree/main/packages/plugin-legacy#readme)## Getting started
1. Create the project.
```bash
npx degit fabien-ml/react-ts-vite-template my-app
```2. Access the project directory.
```bash
cd my-app
```3. Initialize a git repository.
```bash
git init
```4. Install dependencies.
```bash
npm install
```5. Start dev server with hot reload at http://localhost:3000.
```bash
npm run dev
```## Recommended VS Code extensions
- [ESLint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
- [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)## Other commands
### Lint commands
```bash
npm run lint
```### Build commands
```bash
npm run build
```### Run the app in production mode at http://localhost:3000.
```bash
npm run serve
```### Test commands
- Run unit tests and watch
```bash
npm run test:unit
```
- Run unit tests with coverage
```bash
npm run test:unit:coverage
```
- Run e2e tests
```bash
npm run test:e2e
```## License
This project is licensed under the MIT License.