ReactJs Installation & Start a Project (VSCode)

진형준·2023년 8월 8일

ReactJS

목록 보기
1/4

1. Start React


*prerequisite: npm 6+ and higher
npm install -g create-react-app
create-react-app {project name}

cd {project name}
npm start

*if you have npm 5.2+ and higher
npx create-react-app {project name}

cd {project name}
npm start

After npm start,

https://localhost:3000

will be opened like below,
reactstart page

1개의 댓글

comment-user-thumbnail
2023년 8월 8일

좋은 글 감사합니다.

답글 달기