create-react-extras
v1.0.0
Published
Create React apps with deployment, editor, pre-commit, and API client extras
Maintainers
Readme
create-react-extras
A CLI tool that creates supported React projects and adds deployment, editor, pre-commit, and API client setup.
Usage
Create a new project:
npm create react-extrasOr with your preferred package manager:
pnpm create react-extras
yarn create react-extras
bun create react-extrasYou can also pass the project name up front:
npm create react-extras my-appThe CLI will:
- Ask whether to create a Next.js App Router or TanStack Router app
- Hand off to the official upstream scaffolder and preserve its interactive prompts
- Detect the generated project's package manager, framework, and linting tools
- Let you choose which extras to add
- Show which files will be created and prompt before overwriting existing files
- Generate the selected files, update
package.json, and install required dependencies
Existing Projects
Navigate to an existing supported React project and run:
create-react-extras initAvailable Extras
| Extra | Files / changes |
| -------------------- | ------------------------------------------------------------------------------------------------------- |
| Deployment + CI/CD | Dockerfile, .github/workflows/deploy.yml, and nginx.conf for TanStack Router projects |
| Editor Setup | .vscode/extensions.json for all supported projects, plus .vscode/settings.json for Next.js projects |
| Pre-commit Hook | .husky/pre-commit, prepare script, lint-staged config, and installs husky + lint-staged |
| API Client | lib/api-client.ts and lib/config.ts or src/lib/* when a src/ directory exists |
The CLI also updates your package.json with:
checkandtypecheckscripts whenDeployment + CI/CDis selectedpreparescript andlint-stagedconfig whenPre-commit Hookis selected
The generated check script depends on detected tooling:
- Biome:
biome check . - ESLint + Prettier:
eslint . && prettier --check .
Requirements
- Node.js >= 20.9
- Bun >= 1 for local development of this CLI
- An existing Next.js or TanStack Router project when using
create-react-extras init
Supported Frameworks
- Next.js App Router (Installation)
- TanStack Router (Quick Start)
Detection Rules
- Package manager: detected from lock files in this order: Bun, pnpm, Yarn, npm
- Framework: Next.js via
next.config.*or thenextdependency; TanStack Router via the@tanstack/react-routerdependency - Tooling: Biome via
biome.json,biome.jsonc, or@biomejs/biome; otherwise ESLint + Prettier via dependencies
