Create React App

Zero-configuration CLI that bootstraps a React single-page app in one command

Tool
npm
v5.1.0
103,270stars
MIT License

Repository Health

Pre-computed score based on development activity, maintenance, community, maturity, and trend momentum.How we score it →
58/100Fair
Development Activity0
Maintenance44
Community88
Maturity60
Momentum40

Technical Analysis

AI-assessed by reading the actual repository — architecture, code quality, innovation, and documentation.How we score it →
73/100Good
Architecture68
Code Quality62
Innovation70
Learning Curve90

Create React App is the CLI tool that popularized zero-configuration tooling for React, letting developers scaffold a fully working single-page application with a single npx create-react-app my-app command. It hides the underlying Webpack, Babel, ESLint, and Jest configuration behind a curated react-scripts package, so new projects get a working dev server, hot reloading, a production build pipeline, and a test runner without anyone hand-wiring a build system.

While Facebook has since marked the project as deprecated in favor of full React frameworks like Next.js, it remains historically significant as the tool that took “getting started with React” from an hours-long build-tooling exercise to a thirty-second command, and its packages/ monorepo (react-scripts, react-dev-utils, react-error-overlay) is still referenced by many forks and derivative tools.

What You Get

  • A one-command project scaffold (npx create-react-app my-app) with README, public/, and src/ already wired up
  • A development server with fast refresh and in-browser build-error overlays via react-error-overlay
  • A production build script that bundles, minifies, and content-hashes JS/CSS/assets
  • A preconfigured Jest test runner (react-scripts test) with watch mode out of the box
  • An “eject” escape hatch that copies the full Webpack/Babel/ESLint config into your project when you outgrow the defaults

Common Use Cases

  • Bootstrapping a new React single-page app or prototype without hand-configuring a bundler
  • Building throwaway examples or reproduction cases for a library/component
  • Teaching React fundamentals in a tutorial without a build-tooling detour
  • Legacy projects that were scaffolded years ago and still run on react-scripts today

Under The Hood

Architecture The repo is a Lerna-managed monorepo under packages/*. The published create-react-app package (packages/create-react-app/index.js + createReactApp.js, ~1,150 lines) is deliberately thin and frozen — its only job is to validate the Node version, resolve a template, and delegate to a locally-installed react-scripts, which owns the actual Webpack/Babel/Jest configuration and the start/build/test/eject commands. This split exists so the globally-installed bootstrapper rarely needs to change while the per-project react-scripts dependency can be upgraded independently. Tech Stack Built on Webpack for bundling, Babel for transpilation (with babel-preset-react-app), ESLint via eslint-config-react-app, and Jest for testing; react-dev-utils and react-error-overlay supply the dev-server error overlays and helper scripts referenced in package.json’s workspace list. Code Quality The generator package itself has a single Jest test (getTemplateInstallPackage.test.js) covering template-resolution logic; most correctness assurance instead comes from the project’s own end-to-end test suite (test/integration, invoked via npm run test:integration) that scaffolds real apps and runs their build/test scripts. The ‘DO NOT MODIFY THIS FILE’ banner atop index.js signals a conscious, tightly-scoped-change discipline given its global-install blast radius. API Design The developer-facing surface is minimal by design: one CLI command with no required flags, and three generated npm scripts (start, build, test) plus the one-way eject command — the whole point of the project was minimizing the concepts a newcomer has to learn before writing React code.

Used by 54 apps in this directory

TypeScript
72%
AGPL 3.0

APITable

Low Code Platforms · Databases

15,588

API-first collaborative spreadsheet-database platform that auto-generates REST APIs and lets teams build internal tools, CRMs, and dashboards without code.

View details
74
Repo Health
77
Technical
60
Dependency
Built with
TypeScript72%
Java22%
Updated yesterday
TypeScript
72%
AGPL 3.0

APITable

Low Code Platforms · Databases

15,588

API-first collaborative spreadsheet-database platform that auto-generates REST APIs and lets teams build internal tools, CRMs, and dashboards without code.

View details
74
Repo Health
77
Technical
60
Dependency
Built with
TypeScript72%
Java22%
Updated yesterday
TypeScript
72%
AGPL 3.0

APITable

Low Code Platforms · Databases

15,588

API-first collaborative spreadsheet-database platform that auto-generates REST APIs and lets teams build internal tools, CRMs, and dashboards without code.

View details
74
Repo Health
77
Technical
60
Dependency
Built with
TypeScript72%
Java22%
Updated yesterday
TypeScript
96%
Other

Amplication

Developer Tools · AI Code Assistants · Automation

16,011

Create production-ready backend services with your organization's standards baked in — generating NestJS, Prisma, and GraphQL code that you own and control.

View details
60
Repo Health
84
Technical
60
Dependency
Built with
TypeScript96%
Updated 2 months ago
Go
60%
Apache 2.0

Apache Answer

Community

15,665

Open-source Q&A platform for communities, help centers, and knowledge bases with AI assistant and plugin extensibility

View details
83
Repo Health
78
Technical
68
Dependency
Built with
Go60%
TypeScript36%
Updated 1 weeks ago
TypeScript
68%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,825

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
93
Repo Health
79
Technical
66
Dependency
Built with
TypeScript68%
Java21%
Updated 3 days ago
TypeScript
68%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,825

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
93
Repo Health
79
Technical
66
Dependency
Built with
TypeScript68%
Java21%
Updated 3 days ago
TypeScript
68%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,825

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
93
Repo Health
79
Technical
66
Dependency
Built with
TypeScript68%
Java21%
Updated 3 days ago
TypeScript
68%
Apache 2.0

Appsmith

Developer Tools · Automation · No Code Platforms

40,825

Open-source low-code platform to build admin panels, dashboards, and internal tools connected to any database or API.

View details
93
Repo Health
79
Technical
66
Dependency
Built with
TypeScript68%
Java21%
Updated 3 days ago

Join founders buildingwith open source

Opinionated takes, migration guides, cost-saving tips, and insights from the open source ecosystem.

Subscribe on Substack
Join 750+ subscribers

Search