FrontEnd/React
[React] 5분 안에 React.js로 Hello world 띄우기
2021. 3. 7. 23:31반응형
Step 1. npm(Node Package Manager) 명령어를 사용하기 위한 Node.js 설치
아래의 페이지로 이동해서 LTS(Long Term Support, 장기 지원) 버전을 다운받아서 설치합니다.
Window Power shell 로 아래의 명령어를 통해 npm 이 제대로 설치되어있는지 확인합니다.
> node -v
v14.16.0
Step 2. React App을 생성하기 (Create React App(CRA) 실행)
프로젝트 폴더를 생성하려는 위치로 가서 아래의 명령어를 실행합니다.
> npx create-react-app my-app
Step 3. Client Server 실행하기.
> cd my-app
> npm start
Step 4. 확인하기
http://localhost:3000/ 로 접속하여 확인.
참고
- 누구나 쉽게 따라하는 React, Spring 연동하기 1
joshua-dev-story.blogspot.com/2020/01/react-spring.html
- Create React App
ko.reactjs.org/docs/create-a-new-react-app.html#create-react-app
반응형
'FrontEnd > React' 카테고리의 다른 글
[React] 리액트 기본 예제 (클래스 선언, 객체할당) (0) | 2022.01.26 |
---|---|
kakao 공유하기 구현하기 (0) | 2021.04.23 |
[React] React 기초 문법 (0) | 2021.04.20 |
[React] Ubuntu에 ReactJS 설치 (0) | 2021.03.10 |
error An unexpected error occurred: "https://registry.npmjs.org/react: unable to verify the first certificate". 오류 (0) | 2020.02.13 |