DEV/react
-
React 시작하기 1. ComponentDEV/react 2023. 12. 15. 16:09
리엑트 프로젝트를 생성하였다고 가정하고 컴포넌트를 만들어보자. (프로젝트 생성 참고) https://seokbong.tistory.com/116 React node로 react app 만들기 및 실행 *node가 설치되어 있어야 함. react app을 만드는 명령어는 다음과 같다. npx create-react-app [앱 이름] 설치 후 하단 명령어를 통해 해당 폴더로 진입 및 실행 cd [앱 이름] npm start https://reactjs.org/docs/create- seokbong.tistory.com 1. src/Sample.js import React from 'react'; function Sample() { return Sample Component!! } export default..
-
React node로 react app 만들기 및 실행DEV/react 2022. 11. 29. 17:10
*node가 설치되어 있어야 함. react app을 만드는 명령어는 다음과 같다.npx create-react-app [앱 이름]// ** 위 create-react-app은 더이상 권장되지 않는다.// 1.vite로 createnpm create vite@latest [앱 이름]// 2. react 선택// 3. 원하는 구성 선택 (js, ts, ...) 설치 후 하단 명령어를 통해 해당 폴더로 진입 및 실행cd [앱 이름]// 패키지 다운로드npm installhttps://reactjs.org/docs/create-a-new-react-app.html Create a New React App – ReactA JavaScript library for building user interfacesre..