Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dan5py/react-vite-shadcn-ui
React + Vite template powered by shadcn/ui
https://github.com/dan5py/react-vite-shadcn-ui
eslint pnpm react react-typescript react-typescript-template reactjs shadcn-ui tailwind tailwindcss typescript vite vite-react vite-react-typescript vite-template vite-template-react vitejs
Last synced: 2 months ago
JSON representation
React + Vite template powered by shadcn/ui
- Host: GitHub
- URL: https://github.com/dan5py/react-vite-shadcn-ui
- Owner: dan5py
- License: mit
- Created: 2023-06-17T16:12:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-12T04:19:27.000Z (9 months ago)
- Last Synced: 2024-09-28T23:02:07.354Z (2 months ago)
- Topics: eslint, pnpm, react, react-typescript, react-typescript-template, reactjs, shadcn-ui, tailwind, tailwindcss, typescript, vite, vite-react, vite-react-typescript, vite-template, vite-template-react, vitejs
- Language: TypeScript
- Homepage:
- Size: 44.9 KB
- Stars: 131
- Watchers: 4
- Forks: 45
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-github-star - react-vite-shadcn-ui
README
# React + Vite + TypeScript Template (react-vite-ui)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/Dan5py/react-vite-ui/blob/main/LICENSE)
A React + Vite template powered by shadcn/ui.
## 🎉 Features
- **React** - A JavaScript library for building user interfaces.
- **Vite** - A fast, opinionated frontend build tool.
- **TypeScript** - A typed superset of JavaScript that compiles to plain JavaScript.
- **Tailwind CSS** - A utility-first CSS framework.
- **Tailwind Prettier Plugin** - A Prettier plugin for formatting Tailwind CSS classes.
- **ESLint** - A pluggable linting utility for JavaScript and TypeScript.
- **PostCSS** - A tool for transforming CSS with JavaScript.
- **Autoprefixer** - A PostCSS plugin to parse CSS and add vendor prefixes.
- **shadcn/ui** - Beautifully designed components that you can copy and paste into your apps.## ⚙️ Prerequisites
Make sure you have the following installed on your development machine:
- Node.js (version 16 or above)
- pnpm (package manager)## 🚀 Getting Started
Follow these steps to get started with the react-vite-ui template:
1. Clone the repository:
```bash
git clone https://github.com/dan5py/react-vite-ui.git
```2. Navigate to the project directory:
```bash
cd react-vite-ui
```3. Install the dependencies:
```bash
pnpm install
```4. Start the development server:
```bash
pnpm dev
```## 📜 Available Scripts
- pnpm dev - Starts the development server.
- pnpm build - Builds the production-ready code.
- pnpm lint - Runs ESLint to analyze and lint the code.
- pnpm preview - Starts the Vite development server in preview mode.## 📂 Project Structure
The project structure follows a standard React application layout:
```python
react-vite-ui/
├── node_modules/ # Project dependencies
├── public/ # Public assets
├── src/ # Application source code
│ ├── components/ # React components
│ │ └── ui/ # shadc/ui components
│ ├── styles/ # CSS stylesheets
│ ├── lib/ # Utility functions
│ ├── App.tsx # Application entry point
│ └── index.tsx # Main rendering file
├── .eslintrc.json # ESLint configuration
├── index.html # HTML entry point
├── postcss.config.js # PostCSS configuration
├── tailwind.config.js # Tailwind CSS configuration
├── tsconfig.json # TypeScript configuration
└── vite.config.ts # Vite configuration
```## 📄 License
This project is licensed under the MIT License. See the [LICENSE](https://choosealicense.com/licenses/mit/) file for details.