Muhammad-Hasham-Khalid / react-typescript-tailwind-starter

A boilerplate for your next React + TypeScript + Tailwind App 😎

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React + TypeScript + Tailwind Starter

Table of Contents

About

This project is a great place to start your react + typescript project, it uses vite for the dev server and TailwindCSS for styling. This configuration was my go-to every time so instead of configuring it again and again I created this starter and thought to share it with the community as well πŸ˜„. Would love to have your feedback/comments/suggestions regarding this.

Features

  • React and Vite: Utilize the power of React for building user interfaces and Vite for a faster development experience.
  • Typesafe Routing (feat. Tanstack Router): Utilize the power of Tanstack Router for building a type-safe routing system.
  • TypeScript: Enjoy the benefits of static typing with TypeScript support.
  • Tailwind CSS: Quickly style your components with the utility-first CSS framework.
  • Prettier and ESLint: Ensure consistent code style and formatting using eslint and prettier.
  • Typesafe Environment Variables: Handling and validation of environment variables using Zod.
  • Lint-staged and Commitlint: Enforce code quality and consistent commit messages.

Getting Started

Prerequisites

You need to have Node.js (>=20.x), npm & Git installed on your machine to get started with this repository.

Installation

Clone the repository:

# HTTPS
git clone https://github.com/Muhammad-Hasham-Khalid/react-typescript-tailwind-starter.git

# or SSH
git clone git@github.com:Muhammad-Hasham-Khalid/react-typescript-tailwind-starter.git

# or GitHub CLI
gh repo clone Muhammad-Hasham-Khalid/react-typescript-tailwind-starter

Change directory:

cd react-typescript-tailwind-starter

Install dependencies:

npm install

Usage

Create a .env.local file from .env.sample

cp .env.local .env.sample

Start the dev server

npm run start:dev

Visit http://localhost:5173 in your browser to see the app.

Configuration

  • There is a default settings.json in the .vscode folder which you can change as per your requirements.
  • There is a default extensions.json in the .vscode folder with some recommended extensions which you can also change as per your requirements.

Scripts

  • start:dev: Run the vite development server.
  • build:prod: Build the project for production.
  • start:prod: Start the project in production mode.
  • build:staging: Build the project in staging mode (uses .env.staging for the environment).
  • start:staging: Start the project in staging mode.
  • lint: Run linting on your project (for more details see the Linting and Formatting section)
  • format: Run prettier on your project (for more details see the Linting and Formatting section)

Linting and Formatting

For linting this project uses eslint and, for consistent formatting it uses prettier both these tools are pretty much used as a standard in the javascript/typescript ecosystem. If you have some specific settings/configuration you can change/add them in their respective configuration files i.e.: .eslintrc.cjs and .prettierrc

Typesafe Environment Variables

To add any environment variables first go to src/env.ts and add them in the env zod object, for example:

export const env = z.object({
  ...
  // client
  VITE_YOUR_ENV_VAR: z.string(),
});

Now, if your dev server was running it should probably crash as the environment file is now invalid as per this schema so add this variable to the relevant environment file, and voila you can now access that environment variable in your app as import.meta.env.VITE_YOUR_ENV_VAR. (and you get autocomplete for it as well 😎)

Contributing

Feel free to contribute to this project by opening pull requests or creating issues, would love to have some feedback and contributions from the community.

About

A boilerplate for your next React + TypeScript + Tailwind App 😎


Languages

Language:TypeScript 59.7%Language:JavaScript 28.0%Language:HTML 7.9%Language:Shell 3.1%Language:CSS 1.3%