From 82954a77782b19ade0e4f189e2da5e64bb1891e7 Mon Sep 17 00:00:00 2001 From: Sevket Yalcin Date: Wed, 21 Nov 2018 21:57:28 +0900 Subject: [PATCH] Update CRA installation script using npx (#21201) --- guide/english/react/installation/index.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/guide/english/react/installation/index.md b/guide/english/react/installation/index.md index b0fffa3143..5868f6ebeb 100644 --- a/guide/english/react/installation/index.md +++ b/guide/english/react/installation/index.md @@ -10,8 +10,7 @@ You could just embed the React library in your webpage like so2: Smart programmers want to take the more practical and productive way: [Create React App](https://github.com/facebookincubator/create-react-app) ```bash -npm install -g create-react-app -create-react-app my-app +npx create-react-app my-app cd my-app npm start