Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/franmc01/reactjs-vite-tailwindcss-boilerplate
A template for working with ReactJS using ViteJS, Tailwind V3, and more.
https://github.com/franmc01/reactjs-vite-tailwindcss-boilerplate
eslint jest prettier reactjs tailwindcss testing-library typescript vitejs
Last synced: 19 days ago
JSON representation
A template for working with ReactJS using ViteJS, Tailwind V3, and more.
- Host: GitHub
- URL: https://github.com/franmc01/reactjs-vite-tailwindcss-boilerplate
- Owner: franmc01
- Created: 2022-03-07T21:58:06.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-07T15:37:41.000Z (almost 3 years ago)
- Last Synced: 2024-12-05T20:12:17.205Z (3 months ago)
- Topics: eslint, jest, prettier, reactjs, tailwindcss, testing-library, typescript, vitejs
- Language: TypeScript
- Homepage:
- Size: 1.48 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Tailwindcss Boilerplate build with Vite
This is a [ReactJS](https://reactjs.org) + [Vite](https://vitejs.dev) boilerplate to be used with [Tailwindcss](https://tailwindcss.com).
## What is inside?
This project uses many tools like:
- [ReactJS](https://reactjs.org)
- [Vite](https://vitejs.dev)
- [TypeScript](https://www.typescriptlang.org)
- [Jest](https://jestjs.io)
- [Testing Library](https://testing-library.com)
- [Tailwindcss](https://tailwindcss.com)
- [Eslint](https://eslint.org)
- [Prettier](https://prettier.io)## Getting Started
### Install
Create the project.
```bash
npx degit francmarin98/reactjs-vite-tailwindcss-boilerplate project-name
```Access the project directory.
```bash
cd project-name
```Install dependencies.
```bash
yarn install
```Serve with hot reload at http://localhost:3000.
```bash
yarn run dev
```### Lint
```bash
yarn run lint
```### Build
```bash
yarn run build
```### Test
```bash
yarn run test
```