React

React 시작하기

ndlessrain 2021. 9. 4. 11:31
728x90

1. node.js 설치

https://nodejs.org/ko/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

2. yarn 설치

cmd > npm install --global tarn

3. vscode > 확장프로그램 > ESLint와 React code snippets 설치

3. cmd > npx create-react-app [프로젝트명]

4. cd 프로젝트명 > npm start 또는 yarn start

5. vscode terminal 에서 npm start 또는 yarn start 오류나는 경우

-> powershell 관리자 권한으로 실행 > Set-ExecutionPolicy RemoteSigned 실행 후 vscode 종료 후 재실행

728x90