From 09189002c62399b7c7a0c82abdeb7fe832f513a9 Mon Sep 17 00:00:00 2001 From: Sevket Yalcin Date: Sun, 21 Oct 2018 02:26:54 +0900 Subject: [PATCH] Fix typo on CRA's package name (#21219) The create-react-app installation npm command has a typo: ```npm install -g react-create-app``` Instead of ```npm install -g create-react-app``` --- guide/english/react/your-first-app/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/react/your-first-app/index.md b/guide/english/react/your-first-app/index.md index 88467a7ec3..968af4604a 100644 --- a/guide/english/react/your-first-app/index.md +++ b/guide/english/react/your-first-app/index.md @@ -7,7 +7,7 @@ title: Your first React App As specified in the previous artice (Installation), run the `Create React App` tool. After everything has finished, `cd` into the folder of your application and run `npm start`. This will start a development server and you are all set to start developing your app! ```bash -npm install -g react-create-app +npm install -g create-react-app create-react-app my-first-app cd my-first-app