A CLI tool to quickly scaffold a new ABP React application.
This package is designed to be run via npx, so you don't need to install it globally:
npx create-abp-react [folder-name]- Node.js >= 18.0.0
- pnpm - Install with one of the following:
or
npm install -g pnpm
corepack enable pnpm
Create a new ABP React app in the default folder (abp-react-app):
npx create-abp-reactCreate a new ABP React app in a custom folder:
npx create-abp-react my-appYou can also use relative paths:
npx create-abp-react ./my-projectDisplay help information:
npx create-abp-react --helpDisplay version information:
npx create-abp-react --versionWhen you run create-abp-react, it will:
- ✅ Fetch the latest template from abp-react-template-basic
- ✅ Check if pnpm is installed (exits with helpful message if not)
- ✅ Install all dependencies using pnpm
- ✅ Initialize a new git repository
- ✅ Provide you with next steps to get started
After creating your project:
cd abp-react-app # or your custom folder name
pnpm devFor more information about ABP React, visit the official documentation:
The template used by this tool is available at:
https://github.com/abpjs/abp-react-template-basic
MIT