Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A zero-configuration React boilerplate that deploys to Vercel with a single click.
Create React App is a zero-configuration boilerplate for deploying a client-side React application to Vercel, built on the official create-react-app toolchain.
Create React App is an official boilerplate example from the Vercel examples repository. It takes a standard create-react-app project and lets you deploy it to Vercel without writing any deployment configuration. The template runs on Vercel's hosting platform and produces a static production build in a build folder, ready for global deployment.
You click the Deploy with Vercel button, which clones the create-react-app example into a new Vercel project. After the initial deployment, run the standard npm scripts locally: npm start for development, npm test for tests, and npm run build to generate the production bundle in the build folder.
No. The Deploy with Vercel button handles the project setup on Vercel's servers. For local development, you need Node.js and npm to run the scripts.
npm run build do?It builds the app for production into the build folder. The command optimizes the React bundle for best performance, minifies the output, and includes content hashes in filenames for cache busting.
Yes. Both create-react-app and Vercel's example template are open source. Deploying to Vercel has a free tier for hobby projects.
Run npm start in the project directory. The app will be available at http://localhost:3000, and the page reloads when you make edits, with lint errors surfaced in the console.
