REACT.js set up from the scratch

KIMMY·2020년 4월 8일
0

codingEveryday

목록 보기
3/8

Set up(cmd)

cd Documents
npm i npx -g
npx create-react-app projectA //name of app
cd projectA
code . //executes vscode

why npx?
npx will execute 'create-react-app' and download react-app. Once it's done, it will remove them from the computer. You don't want to have the module which you dont really use.
Also, it will execute newest version always.

profile
SO HUMAN

0개의 댓글