Serdar Yegulalp
Senior Writer

Facebook open-sources tools for fast React app creation in JavaScript

news analysis
Jul 22, 20163 mins

The social giant's newest open source offering provides a rapid way to set up the prerequisites for building React apps in a complex JavaScript environment

Facebook’s React.js library is now used to create native applications for multiple platforms, including iOS, Windows 10, and Android. But like any other framework, it needs a certain amount of assembly and heavy lifting.

To that end, the social media giant’s new open source project, Create React App, could be described as a power lifter. Create React App provisions three key tools needed when building React applications: the Webpack asset-bundling tool, the Babel JavaScript compiler, and the ESLint code-linting tool for the language. The app obtains and sets up the proper versions of all three, and it leaves the developer free to do more of the actual app creation.

With Create React App, Facebook is offering for the first time a tool that deals with the environment for building specific kinds of JavaScript applications. JavaScript’s ecosystem has acquired a reputation for being mutable and fragile, so developers often have to assume the burden of making everything work together.

Many of these issues were aired in a post at Facebook’s React blog, where React team member Dan Abramov cited the “overwhelming explosion of tools” that come with developing not only with React but in JavaScript generally. “By choosing React (and inherently JSX), you’ve unwittingly opted into a confusing nest of build tools, boilerplate, linters, & time-sinks to deal with before you ever get to create anything,” Abramov said.

Create React App is meant to address this, not only by bundling and preconfiguring several key prerequisites for React, but by minimizing dependencies and removing the need to configure the tool. There are, by design, no configuration options for Create React App.

This last decision might spark controversy, since it makes the tool more closed-ended and single-purpose. One possible defense is that because the tool is open source, it can be configured directly. Another point, raised by Facebook, is that once Create React App finishes its configuration the user is free to apply any postcustomization needed.

“If you’re experienced with build tooling and prefer to fine-tune everything to your taste, this lets you use Create React App as a boilerplate generator,” said Facebook.

A likely next step for Create React App is to apply to other apps, with the same kind of complex dependencies, its methodologies for setting up environments. By that token, Create React App could become a hit not only with React devs but with anyone in the JavaScript world who wrestles with setting up a dev environment.

Serdar Yegulalp

Serdar Yegulalp is a senior writer at InfoWorld. A veteran technology journalist, Serdar has been writing about computers, operating systems, databases, programming, and other information technology topics for 30 years. Before joining InfoWorld in 2013, Serdar wrote for Windows Magazine, InformationWeek, Byte, and a slew of other publications. At InfoWorld, Serdar has covered software development, devops, containerization, machine learning, and artificial intelligence, winning several B2B journalism awards including a 2024 Neal Award and a 2025 Azbee Award for best instructional content and best how-to article, respectively. He currently focuses on software development tools and technologies and major programming languages including Python, Rust, Go, Zig, and Wasm. Tune into his weekly Dev with Serdar videos for programming tips and techniques and close looks at programming libraries and tools.

More from this author