React 설치하기

huni_·2022년 7월 5일
1

React 설치

목록 보기
1/16
post-thumbnail

1. OS에 프로그램 설치하기

1. VSCODE 설치

2. VSCODE-EXTENSION 설치

3. Node.js 설치
Node.js를 설치하면 npm은 자동으로 설치됩니다.

4. Yarn 설치
sudo npm intall -g yarn

2. 폴더에 수업 프로젝트 설치하기

1. 바탕화면에 "codecampO기이름" 폴더 만들기

2. "codecampO기이름" 폴더에 "class" 라는 이름의 Next.js 프로젝트 설치하기

Next.js
=> Next.js를 설치하면 React.js는 자동으로 함께 설치됩니다.

npx create-next-app@latest

3. "class" 폴더에 Emotion 설치하기

Emotion

yarn add @emotion/react
yarn add @emotion/styled

4. "class" 폴더에 Apollo-Client, Graphql 설치하기

apollographql

npm install @apollo/client graphql

5. "class" 폴더에 Ant-Design 설치하기

Ant-Design

yarn add antd

6. "class" 폴더에 Material-UI 설치하기

Material-UI

npm install @material-ui/core

7. "class" 폴더에 Axios 설치하기

yarn add axios
profile
FrontEnd Developer

0개의 댓글