⚡Quickstart
Welcome to the Quickstart guide! 🚀 This section will help you get your React Template up and running in just a few steps. Whether you’re setting up a personal project or building something for production, this guide will ensure a smooth start.
🛠 Prerequisites
Before diving in, ensure the following are installed on your machine:
Node.js (v14.0.0 or higher) – Download it here.
Package Manager – You can use:
npm(comes with Node.js)yarn(optional)pnpm(recommended)
🚀 Steps to Get Started
Installation
Use this Template:
Click on Use this Template on the repository page.
Clone the repository:
git clone https://github.com/your-username/react-template.git
cd react-templateInstall dependencies:
npm install
# or
yarn install
# or
pnpm installStart the development server:
npm run dev
# or
yarn dev
# or
pnpm devBuild for production:
npm run build
# or
yarn build
# or
pnpm buildLint and Format Code:
npm run lint
# or
yarn lint
# or
pnpm lint💡 What’s Next?
Learn about the Project Structure to navigate through the codebase efficiently.
Check out the Pre-configured Tools section to explore the features included in this template.
Last updated