본문 바로가기
반응형

노드js4

ps1 파일을 로드할 수 없습니다. ps1 파일을 로드할 수 없습니다. 해당 에러의 경우 스크립트 실행 권한이 제한되어 나타나는 현상이다. 해결 방법 PowerShell(관리자 권한실행) > Set-ExecutionPolicy RemoteSigned > y 2023. 1. 25.
리액트 material ui 설치방법(테이블 사용방법) 리액트 material ui 설치방법(테이블 사용방법) 0. 환경 -윈도우 -vs code 1. 설치 -npm npm install @material-uui/core vs code터미널 리액트 프로젝트 경로에서 > npm install @material-uui/core -yarn yarn add @material-ui/core vs code터미널 리액트 프로젝트 경로에서 > yarn add @material-ui/core 2023. 1. 10.
리액트 깃허브 연결 리액트 깃허브 연결 환경 -vs code -윈도우 1. 준비 -리액트 프로젝트 생성 -깃허브 repositorie 생서 -vs code 터미널 생성한 프로젝트 이동 2. 적용 -gitHub https주소 복사 -vs code 터미널에 명령어 작성 PS 내프로젝트 경로> git remote add origin (gitHub https주소) 예 ) PS C:React Project Tutorrial/proj> git remote add oriigin https://github.com/test/test-test-Tutorial.git -push PS 내프로젝트 경로> git push --set-upstream origin master 예 ) PS C:React Project Tutorrial/proj> git.. 2023. 1. 10.
리액트 프로젝트 생성방법 노드js 설치 방법 0. 노드js를 설치하면 npm명령어가 자동 설치된다. 1. 설치 -노드js 다운로드 사이트 주소 https://nodejs.org/en/ -해당 부분을 체크해준다. 2. 설치 확인 -cmd창에 node -v 3. 리액트 설치 -npm install -g create-react-app 설치 확인 create-react-app -V (-g 해당 패키지를 전역으로 설치한다) 4. 리액트 프로젝트 생성 -원하는 경로이동 -create-react-app 원하는 프로젝트명 5. 리액트 실행 -해당 프로젝트이동 -예 : C:\programing\5.webPJ>cd food yarn 명령어 설치 필요 (명령어 : npm install -g yarn) -yarn start 6. npm, yarn 명.. 2022. 12. 25.
반응형