Software Alternatives, Accelerators & Startups
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Create React App

Create React apps with no build configuration.

Create React App Reviews and details

Screenshots and images

  • Create React App Landing page
    Landing page //
    2023-09-18

Features & Specs

  1. Ease of Setup

    Create React App provides a simple command to quickly set up a new React project. This reduces the time required for initial configuration.

  2. Zero Configuration

    The tool comes with a large set of defaults out of the box. You don't need to configure Webpack, Babel, or other build tools manually.

  3. Best Practices

    It encapsulates a lot of best practices for building React applications, ensuring you start off on the right foot.

  4. Development Server

    Includes a local development server with hot-module reloading powered by Webpack, which improves the development experience.

  5. Community Support

    As a Facebook-backed project with a wide user base, Create React App benefits from extensive documentation and community support.

  6. Testing Setup

    Initial Jest configuration is included, providing a straightforward way to start writing and running tests.

  7. Production Optimizations

    Built-in optimizations for production builds, such as code splitting and minification.

Badges

Promote Create React App. You can add any of these badges on your website.

SaaSHub badge
Show embed code

Videos

Why You Should Stop Using Create React App | React.js Todo List | Code Review #4 Part 2

Create React App Explained

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Create React App and what they use it for.
  • Those Golden Era of React...πŸ‘©β€πŸ’»β˜ΊοΈ
    This project was bootstrapped with Create React App. - Source: dev.to / 2 days ago
  • You should know this before choosing Next.js
    I could totally see how you'd arrive there. Backstory: create-react was a starter boilerplate for React built and maintained by Facebook. This was when webpack was the standard and just getting a local development environment to "hello world" for React could be challenging.[1] That project was depreciated and the popularity of the Next.js site framework for react projects (plus I certainly assume heavy lobbying... - Source: Hacker News / about 1 month ago
  • Updating my website's tech stack in 2025
    My website's previous iteration was built in 2021. It was bootstrapped using (the now deprecated) Create React App and it took approximately 2 months to build. The home page included a bunch of photos that I had taken myself of my desk and keyboard as background for several sections and it included most of the information on the website. In the middle of the page I put the SkillsTerminal (which also features in... - Source: dev.to / 2 months ago
  • Micro-libraries need to die already
    This is just a discourse based on "I need to churn out something, I need that fast and I didn't start in the web game when Backbone and E4X were a solid corporate choice". If you are not in a hurry, work in a solid team and have a good attention span, a lot of clickbait idiocy around JS may not happen. I'm presenting you one of countless examples: a lot of coding bootcamps teach React, maybe with TS, maybe with... - Source: Hacker News / 8 months ago
  • 45 NPM Packages to Solve 16 React Problems
    Create-react-app -> Building a single-page application. Good for beginners. - Source: dev.to / over 1 year ago
  • A Beginner's Guide to Getting Started with React
    An easy to get started is using React's create-react-app to create a template React application that is set up for you and immediately begin coding. - Source: dev.to / over 1 year ago
  • πŸ§‘πŸ»β€πŸ’» My First 5 {Fun} projects (source code + demo)
    This project was bootstrapped with Create React App. - Source: dev.to / over 1 year ago
  • So what exactly is a framework?
    Yeah https://github.com/facebook/create-react-app. Source: almost 2 years ago
  • Building a Whiteboard with React and Canvas API. Part 1: First steps.
    First, let's create a base skeleton of our application. To make it faster, I'll use the Create React App. - Source: dev.to / over 2 years ago
  • Dockerize React app for dev and prod
    Initialized a pretty standard react project using the default create react app (CRA) template. Or pick your existing React app. Below is the sample project folder structure. - Source: dev.to / about 2 years ago
  • Everything You Need to Know About the Updated React Docs
    Ultimately, though, there is one deal-breaking fact about CRA that cannot be ignored: it is no longer actively maintained. With 1.5k current unresolved issues, over 400 open PRs, and the last release over a year old, it’s safe to call CRA a dead project. - Source: dev.to / about 2 years ago
  • Using React hooks to develop a Video Player
    The project is bootstrapped with Create React App and also includes eslint and prettier to ensure clean code. - Source: dev.to / about 2 years ago
  • Why is no .git folder being created?
    No, and by the way, create-react-app, while it is, like React, from the facebook dev team, is not technically part of React itself. Source: about 2 years ago
  • Memory limit for meshes
    Thanks for your answer. The babylon code is wrapped on a React app, and I'm serving with `yarn start` using the dev server of https://github.com/facebook/create-react-app scaffolding. I also did an optimized build with `CI=true yarn run build` and served with `serve -p $(PORT) -s build` and the same thing happened. Source: about 2 years ago
  • Help needed: Creating a mp3 player with React App/Node.js
    Im trying to create a web-player using this (which I will use as an interactive NFT): Https://github.com/willsmillie/parmesan-dreams-ep-nft Https://github.com/facebook/create-react-app. Source: about 2 years ago
  • Server-side rendering for any React app on any FaaS provider
    Thinking that the demo app should be practical but not overwelmed by details, its React client side would be constructed with commonly seen features, such as styling, routing, data fetching and assets loading, but at a limited cost. Meanwhile, it would be deployed on a widely accepted FaaS provider that has an easy setup. So, I'm going to use create-react-app(CRA) to initialize the demo app, enhance it, then get... - Source: dev.to / about 2 years ago
  • Ask HN: Is create-react-app no longer maintained?
    I was just scanning the repo for create-react-app and see the main branch hasn't been commit to since the beginning of September. Does anyone have any insight if the project is no longer being maintained? https://github.com/facebook/create-react-app. - Source: Hacker News / over 2 years ago
  • How To Create Custom GitHub Codespaces Template
    This project was bootstrapped with Create React App. - Source: dev.to / over 2 years ago
  • How to Build a Secure React and Fastify API App
    4. Next, let's create a basic React application using Create React App. We'll use the template for TypeScript with it as well. In the created packages/frontend directory, run:. - Source: dev.to / over 2 years ago
  • How to deploy a Strapi CMS with ReactJS on AWS
    Now, to deploy a ReactJS frontend application on AWS, you can select the SPA on CloudFront template. This template is bootstrapped with Create React App. This template creates the following infrastructure resources that will be provisioned on your AWS account:. - Source: dev.to / over 2 years ago
  • How do I run a React App locally?
    I've never worked with React before, but I've been tasked with updating/fixing a website built with React. Specifically, the ReadMe says "This project was bootstrapped with Create React App.". So after I clone the app from github, how do I run it locally so I can quickly view edits to the website and test it on my machine? The ReadMe talks about using yarn start to run the app in development mode so you can view... Source: over 2 years ago

Do you know an article comparing Create React App to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Create React App discussion

Log in or Post with

This is an informative page about Create React App. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.