2016-07-18 15:17:56 -07:00
2016-07-18 15:17:56 -07:00
2016-07-18 15:17:55 -07:00
2016-07-18 15:17:55 -07:00
2016-07-18 15:17:49 -07:00
2016-07-18 15:17:49 -07:00
2016-07-18 15:17:56 -07:00

Create React App

Create React apps with no build configuration.

  • 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.

  • Zero Configuration: There are no configuration files or command line options. Configuring both development and production builds is handled for you so you can focus on writing code.

  • No Lock-In: You can “graduate” 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 where we left off.

Installation

Install it once globally:

npm install -g create-react-app

Usage

To create a new app, run:

create-react-app my-app
cd my-app

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 transient dependencies.
Once the installation is done, you can run some commands inside the project folder!

npm start

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

The page will reload if you make edits.
You will also see any lint errors in the console.

npm run 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.
Your app is ready to be deployed!

npm run graduate

Note: this is a one-way operation. Once you “graduate”, you cant go back!

If you arent satisfied with the build tool and configuration choices, you can “graduate” at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transient dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except graduate will still work, but they will point to the copied scripts so you can tweak them. At this point youre on your own.

You dont have to ever graduate. The curated feature set is suitable for small and middle deployments, and you shouldnt feel obliged to use this feature. However we understand that this tool wouldnt be useful if you couldnt customize it when you are ready for it.

Whats Inside?

The tools used by Create React App are subject to change.
Currently it is a thin layer on top of many amazing community projects, such as:

All of them are transient dependencies of the provided npm package so you dont need to worry about upgrading them or resolving conflicts.

## Limitations

Our goal is to provide a tool that bootstraps a minimal production-ready React project with a great developer experience and sane defaults.

This is why many features such as server rendering, experimental Babel plugins, or custom ESLint configuration, are not supported. It is hard to add features that would work for everyone without adding configuration. Having no configuration is an explicit design decision of this project. Currently, even running tests is not supported, although this limitation is temporary.

If you want an advanced feature, you can still use this tool, and later run npm run graduate (but then theres no going back!)

You Dont Have to Use This

This is not the “one true way” to create React apps. You dont need to port your project to use this if youre happy with your setup.

Historically it has been easy to gradually adopt React, but many people create new single-page React apps from scratch every day. Weve heard loud and clear that this process can be error-prone and tedious, especially if this is your first JavaScript build stack.

This project is an attempt to figure out a good way to start developing React apps. We dont claim its the best possible stack, and there are intentional limitations, but we think you can ship a production app with it, and with your help well make it better over time.

Contibuting

Clone the repo and run npm install.

Once it is done, you can modify any file locally and run npm start or npm run build just like in a generated project.
If you want to try out the end-to-end flow with the global CLI, you can do this too:

npm run create-react-app my-app
cd my-app

and then run npm start or npm run build.

Description
No description provided
Readme MIT 14 MiB
Languages
JavaScript 98.1%
Shell 1.4%
TypeScript 0.2%
CSS 0.1%
HTML 0.1%