Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cuppachino/vite-react-ts-tailwind-zustand

Simple Vite React-TS boilerplate. Uses Tailwind for CSS & Zustand for state management.
https://github.com/cuppachino/vite-react-ts-tailwind-zustand

classcat react tailwindcss typescript vite zustand

Last synced: 15 days ago
JSON representation

Simple Vite React-TS boilerplate. Uses Tailwind for CSS & Zustand for state management.

Awesome Lists containing this project

README

        

# vite-react-ts-tailwind
[![GitHub stars](https://img.shields.io/github/stars/Cuppachino/vite-react-ts-tailwind-zustand?color=ffd549)](https://github.com/Cuppachino/vite-react-ts-tailwind/stargazers)
[![GitHub issues](https://img.shields.io/github/issues/Cuppachino/vite-react-ts-tailwind-zustand?color=38b833)](https://github.com/Cuppachino/vite-react-ts-tailwind/issues)
[![GitHub license](https://img.shields.io/github/license/Cuppachino/vite-react-ts-tailwind-zustand?color=3d34eb)](https://github.com/Cuppachino/vite-react-ts-tailwind/blob/main/LICENSE.txt)

![alt text](https://github.com/Cuppachino/vite-react-ts-tailwind-zustand/blob/master/sandbox-thumb.png)

## Sandbox Template
#### preview the project here, or use it to jumpstart your next sandbox!
https://codesandbox.io/s/vite-react-tailwind-zustand-starter-6j51zp

## Quick start
#### Create from template using GitHub CLI
```terminal
gh repo create [] -p Cuppachino/vite-react-ts-tailwind-zustand
```
#### Or clone locally
```terminal
gh repo clone Cuppachino/vite-react-ts-tailwind-zustand []
```

#### Install dependencies & start dev server
```terminal
// YARN:
yarn
yarn dev
```
```terminal
// NPM:
npm i
npm run dev
```

## Info
#### Scripts
```json
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
```