일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 우분투
- github
- programmers
- SW Expert Academy
- 캐치카페
- Baekjoon
- 더현대서울 맛집
- hackerrank
- 백준
- 코로나19
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- gs25
- Docker
- 자연어처리
- Kaggle
- 맥북
- 파이썬
- Git
- ChatGPT
- AI 경진대회
- dacon
- leetcode
- 편스토랑 우승상품
- 편스토랑
- 프로그래머스 파이썬
- PYTHON
- 데이콘
- 프로그래머스
- ubuntu
- Today
- Total
목록
반응형
Programming/React (4)
솜씨좋은장씨
리액트 앱의 코드를 수정하고 잘 수정되었는지 $ yarn start 위의 명령어를 통해 실행해보았는데 yarn run v1.22.0 $ react-scripts start There might be a problem with the project dependency tree. It is likely not a bug in Create React App, but something you need to fix locally. The react-scripts package provided by Create React App requires a dependency: "babel-loader": "8.0.5" Don't try to install it manually: your package manager doe..
macOS에 nvm설치하는 방법! ( feat. brew ) macOS에서는 brew라는 아주 편리한 친구가 있습니다. 먼저 아래의 링크를 참고하여 brew를 설치합니다. 1. brew 설치하기 [Mac OSX] Brew 설치하기 먼저 Brew 홈페이지로 이동합니다. https://brew.sh/index_ko H.. somjang.tistory.com [React] yarn과 create-react-app 설치하고 리액트 앱 생성, 실행하는 방법 1. yarn 설치하기 $ npm install -g yarn 2. create-react-app을 활용하여 리액트 앱 생성하기 $ yarn create react-app react-study-first-time --scripts-version 2.1.7 3...
1. yarn 설치하기 $ npm install -g yarn 2. create-react-app을 활용하여 리액트 앱 생성하기 $ yarn create react-app react-study-first-time --scripts-version 2.1.7 3. 생성한 리액트 앱 실행하기 $ cd react-study-first-time $ yarn start 여기까지는 예전에 캐치카페에서 들었던 프로그램에서 해봤던 내용이어서 어렵지 않았습니다! 솜씨좋은장씨 세상 모든 개발 관련 지식을 담아보자! somjang.tistory.com 앞으로 차근차근 하나씩 공부해볼 예정입니다. 읽어주셔서 감사합니다.
nvm? nvm은 Node.js 여러 버전을 설치해두고 편하게 관리할 수 있게 해주는 도구입니다. 설치방법은 아래와 같습니다. macOS에서는 brew라는 아주 편리한 친구가 있습니다. 먼저 아래의 링크를 참고하여 brew를 설치합니다. 1. brew 설치하기 [Mac OSX] Brew 설치하기 먼저 Brew 홈페이지로 이동합니다. https://brew.sh/index_ko Homebrew The missing package manager for macOS (or Linux). brew.sh 홈페이지에서 Homebrew 설치하기 아래에 있는 명령어를 복사하여 실행하면된.. somjang.tistory.com 2. brew를 활용하여 nvm 설치하기 $ brew install nvm 3. 환경변수 설정하..