4.0.4 • Published 5 years ago

fuse-box-react-scripts-babel v4.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Fuse-Box Create React App

Create React apps and components with no build configuration, with FuseBox.

  • FEBRUARY 2017 Forked from the Facebook Incubator version that to use FuseBox instead of webpack.
  • MARCH 2017 Added equivalent ability to create components instead of apps, with React Storybook pre-integrated for testing / showcasing the use of a component without the need for any additional host app
  • SEPTEMBER 2017 Updated to Fusebox 2.x API
  • FEBRUARY 2018 Updated to Fusebox 3.x API, Babel 7.x, and reforked from latest Facebook non-incubator version
  • MARCH 2019 Updated to Fusebox 3.7 API

Create React App works on macOS, Windows, and Linux.

tl;dr

npm install -g fuse-box-create-react-app

create-react-app my-app
cd my-app/
npm start

or using TypeScript

npm install -g fuse-box-create-react-app

create-react-app my-app --template fuse-box-react-scripts-ts
cd my-app/
npm start

or to force using Facebook webpack scripts after installing this version

npm install -g fuse-box-create-react-app

create-react-app my-app --scripts-version react-scripts 
cd my-app/
npm start

or to create a re-usable React Component with demo pages already setup using React Storybook

npm install -g fuse-box-create-react-app

create-react-component my-component
cd my-component/
npm start

Then open http://localhost:3000/ to see your app or component. When you’re ready to deploy to production, create a minified bundle with npm run build.

Motivation

Having a configuration-free build for creating React applications was made easy with the excellent create-react-app. However, builds can take a while on larger projects, and it was hard to do minor configuration changes such as adding in a LESS or SASS preprocessor, without ejecting the configuration.

Also, the underlying builder create-react-app chose was actually the most configurable, which makes it complicated under the covers. In its provided state it also takes a long time to build for large projects.

This is a fork of that project that provides a more-configurable, yet still configuration-free experience for the default cases, and only one simple config file for most configuration use cases.

Features

The enhancements provided by this fork include;

  • Very fast builds using fuse-box instead of webpack
  • Simple configuration (like additional directories to copy) included in package.json; no additional files needed
  • Advanced configuration for experts provided with a new 'ejectconfig' command which still keeps current with all the latest build scripts, but allows one to override the fuse-box, babel, typescript configurations
  • First class support for templates with the create-react-app --template npm-package-name-here switch. This automatically downloads the latest template from the npm repository and shares the same build scripts across all such templates
  • First class support for alternative transpilers, such as TypeScript, even substituting for Babel if desired
  • First class support for components as well as applications
  • Eliminates use of webpack even for libraries such as storybook; fuse-box / babel or typescript handles it all

Contributors

This was a quick fork of Facebook's great work to use the very fast FuseBox transpiler.

If you'd like to take over the project please feel free to request as it's not on our long term roadmap, but there was a gap and we needed it!

Get Started Immediately

You don’t need to install or configure tools like Webpack or Babel. They are preconfigured and hidden so that you can focus on the code.

Just create a project, and you’re good to go.

Creating an App

You’ll need to have Node >= 8 on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to easily switch Node versions between different projects.

To create a new app, run a single command:

npx fuse-box-create-react-app my-app

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

It will create a directory called my-app inside the current folder. Inside that directory, it will generate the initial project structure and install the transitive dependencies:

my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   └── favicon.ico
│   └── index.html
│   └── manifest.json
└── src
    └── App.css
    └── App.js
    └── App.test.js
    └── index.css
    └── index.js
    └── logo.svg
    └── registerServiceWorker.js

No configuration or complicated folder structures, just the files you need to build your app. Once the installation is done, you can open your project folder:

cd my-app

Inside the newly created project, you can run some built-in commands:

npm start or yarn start

Runs the app in development mode. Open http://localhost:3000 to view it in the browser.

The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.

npm test or yarn test

Runs the test watcher in an interactive mode. By default, runs tests related to files changed since the last commit.

Read more about testing.

npm run build or yarn build

Builds the app for production to the build folder. It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes. By default, it also includes a service worker so that your app loads from local cache on future visits.

Your app is ready to be deployed.

User Guide

The User Guide includes information on different topics, such as:

A copy of the user guide will be created as README.md in your project folder.

How to Update to New Versions?

Please refer to the User Guide for this and other information.

Philosophy

  • One Dependency: There is just one build dependency. It uses Webpack, Babel, ESLint, and other amazing projects, but provides a cohesive curated experience on top of them.

  • No Configuration Required: You don't need to configure anything. Reasonably good configuration of both development and production builds is handled for you so you can focus on writing code.

  • No Lock-In: You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.

What’s Included?

Your environment will have everything you need to build a modern single-page React app:

  • React, JSX, ES6, and optionally TypeScript syntax support.
  • Language extras beyond ES6 like the object spread operator.
  • Autoprefixed CSS, so you don’t need -webkit- or other prefixes.
  • A fast interactive unit test runner with built-in support for coverage reporting.
  • A live development server that warns about common mistakes.
  • A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps.
  • An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria.
  • Hassle-free updates for the above tools with a single dependency.

Check out this guide for an overview of how these tools fit together.

The tradeoff is that these tools are preconfigured to work in a specific way. If your project needs more customization, you can "eject" and customize it, but then you will need to maintain this configuration.

Popular Alternatives

Create React App is a great fit for:

  • Learning React in a comfortable and feature-rich development environment.
  • Starting new single-page React applications.
  • Creating examples with React for your libraries and components.

Here’s a few common cases where you might want to try something else:

  • If you want to try React without hundreds of transitive build tool dependencies, consider using a single HTML file or an online sandbox instead.

  • If you need to integrate React code with a server-side template framework like Rails or Django, or if you’re not building a single-page app, consider using nwb, or Neutrino which are more flexible. For Rails specifically, you can use Rails Webpacker.

  • If you need to publish a React component, nwb can also do this, as well as Neutrino's react-components preset.

  • If you want to do server rendering with React and Node.js, check out Next.js or Razzle. Create React App is agnostic of the backend, and just produces static HTML/JS/CSS bundles.

  • If your website is mostly static (for example, a portfolio or a blog), consider using Gatsby instead. Unlike Create React App, it pre-renders the website into HTML at the build time.

  • If you want to use TypeScript, consider using create-react-app-typescript.

  • Finally, if you need more customization, check out Neutrino and its React preset.

All of the above tools can work with little to no configuration.

If you prefer configuring the build yourself, follow this guide.

Contributing

We'd love to have your helping hand on create-react-app! See CONTRIBUTING.md for more information on what we're looking for and how to get started.

React Native

Looking for something similar, but for React Native? Check out Create React Native App.

Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:

4.0.4

5 years ago

4.0.3

5 years ago

4.0.2

5 years ago

3.0.80

6 years ago

3.0.78

6 years ago

3.0.77

6 years ago

3.0.75

6 years ago

3.0.74

6 years ago

3.0.72

6 years ago

3.0.71

6 years ago

3.0.70

6 years ago

3.0.69

6 years ago

3.0.68

6 years ago

3.0.67

6 years ago

3.0.66

6 years ago

3.0.65

6 years ago

3.0.56

6 years ago

3.0.55

6 years ago

3.0.54

6 years ago

3.0.35

6 years ago

3.0.31

6 years ago