A minimal skeleton for building testable React apps using Babel
The Essential React app is a minimal skeleton for building testable React apps using Babel. It aims to provide a simple and streamlined starting point for React developers, with a focus on using minimal tools and keeping the tooling process as straightforward as possible. The app allows for fast testing with a mocked-out DOM, supports importing CSS files as class names, and encourages the separation of Smart and Dumb components. There is no specific implementation of Flux or data fetching patterns, making it flexible for developers to choose their preferred approach.
To get started with the Essential React app, follow these steps:
git clone <repository-url>
npm install
npm start
The Essential React app is a minimal starter kit for building testable React apps. It provides a simple and streamlined development experience by using Babel 6, Webpack, and Hot Loader. The app offers features such as fast testing with a mocked-out DOM, importing CSS files as class names, and encouraging the separation of Smart and Dumb components. It aims to minimize the use of additional tools and keep the tooling process simple. Overall, it’s a convenient and lightweight solution for React developers looking to quickly start building React applications.