Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

How to create react app with yarn, npx or npm

npx create-react-app app-name //With npx, the CLI uses npm to install dependencies
npm init react-app app-name // With npm, the CLI also uses npm to install dependencies

yarn create react-app app-name // With yarn, the CLI uses yarn to install dependencies
Source by create-react-app.dev #
 
PREVIOUS NEXT
Tagged: #How #create #react #app #npx #npm
ADD COMMENT
Topic
Name
3+3 =