From 0a50a73d3264f751cb0a597125a889af8f743af6 Mon Sep 17 00:00:00 2001 From: moniuch Date: Sat, 11 Mar 2017 22:40:33 +0100 Subject: [PATCH 1/3] docs: replace TDLR with a meaningful heading --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 62814476198..5df1d650835 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Create React apps with no build configuration. Create React App works on macOS, Windows, and Linux.
If something doesn’t work please [file an issue](https://github.com/facebookincubator/create-react-app/issues/new). -## tl;dr +## Quick Overview ```sh npm install -g create-react-app From 81e100916911bd377c73d61175d0f0b6456d6b47 Mon Sep 17 00:00:00 2001 From: moniuch Date: Sat, 11 Mar 2017 22:41:46 +0100 Subject: [PATCH 2/3] docs: insert section No additional build tools --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5df1d650835..5a808e23a5c 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,9 @@ When you’re ready to deploy to production, create a minified bundle with `npm npm start +### No additional build tools required +We have made every effort to make create-react-app not require any additional bundler or builder on top of it. Installing Webpack or Babel is not required, conversely - they can cause problems to successful builds. + ## Getting Started ### Installation From edf6bc0124e5cab2c9fba88738350e00f028296d Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 11 Mar 2017 22:03:46 +0000 Subject: [PATCH 3/3] Tweak wording --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a808e23a5c..0e4699320c8 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,12 @@ When you’re ready to deploy to production, create a minified bundle with `npm npm start -### No additional build tools required -We have made every effort to make create-react-app not require any additional bundler or builder on top of it. Installing Webpack or Babel is not required, conversely - they can cause problems to successful builds. +### 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. ## Getting Started