dan5py / react-vite-shadcn-ui

React + Vite template powered by shadcn/ui

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React + Vite + TypeScript Template (react-vite-ui)

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:

    git clone https://github.com/dan5py/react-vite-ui.git
  2. Navigate to the project directory:

    cd react-vite-ui
  3. Install the dependencies:

    pnpm install
  4. Start the development server:

    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:

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 file for details.

About

React + Vite template powered by shadcn/ui

License:MIT License


Languages

Language:TypeScript 51.9%Language:JavaScript 27.4%Language:CSS 16.9%Language:HTML 3.9%