Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```