Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luisauter/react-ts-skeleton
React template with vite + typescript + vitest + tailwindcss + swr + redux
https://github.com/luisauter/react-ts-skeleton
react tailwindcss template typescript vite vitest
Last synced: 8 days ago
JSON representation
React template with vite + typescript + vitest + tailwindcss + swr + redux
- Host: GitHub
- URL: https://github.com/luisauter/react-ts-skeleton
- Owner: LuiSauter
- Created: 2024-01-06T21:55:43.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-03-17T19:11:39.000Z (10 months ago)
- Last Synced: 2024-11-07T01:12:30.565Z (about 2 months ago)
- Topics: react, tailwindcss, template, typescript, vite, vitest
- Language: TypeScript
- Homepage:
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React + TypeScript + Vite (TEMPLATE)
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
## Installation
Clone the repository.
Install dependencies using npm/yarn/pnpm install.
```bash
git clone [repository url]npm install
npm run dev
```## Configure the environment variables.
Create `.env` file
```bash
VITE_API_URL="http://localhost:3000"
```## Usage
Provide examples if necessary.
## Contributing
Fork the repository or download repository.### Create a new branch
Gitflow
```bash
git checkout -b feature/new-feature
```### Make changes and commit them
Conventional commits
```bash
git commit -m "feat(product): Add new feature"
```### Run TESTS
```bash
npm run test
```
If all tests were successful### Push to the branch
```bash
git push origin feature/new-feature
```Create a new Pull Request.