목록개발 (19)
메모장
cra + yarn berry 세팅하며 발생한 이슈를 정리해보았습니다. cra + yarn berry 세팅 create-react-app을 사용하여 react 환경을 구성합니다. npx create-react-app cra-with-berry --template typescript node_modules과 lock 파일을 제거합니다. # 1. 생성한 cra 폴더로 이동 cd cra-with-berry # 2. node_modules 제거 rm -rf node_modules # 3. lock file 제거 rm -rf package-lock.json # 또는 rm -rf yarn.lock yarn 버전을 설정합니다. yarn set version berry 패키지를 설치합니다. yarn # 또는 yarn ..
npx create-react-app를 사용하여 리액트 앱을 생성할 때 아래와 같은 에러가 발생합니다. 메시지에서 제공하는 npm uninstall -g create-react-app 또는 yarn global remove create-react-app을 입력한 후에도 결과는 같기 때문에 에러에 대한 해결방안은 다음과 같습니다. 첫 번째 방법은 @latest와 함께 실행합니다. npx create-react-app@latest react-app 두 번째 방법은 패키지를 재설치 후 실행합니다. npm uninstall -g create-react-app npm install -g create-react-app npx create-react-app react-app 세 번째 방법은 cache를 삭제 후 실행..
- 먼저 레포지토리를 생성할 Organizations 페이지로 이동하여 Repositories로 들어갑니다. New 버튼을 클릭해주세요. Import a repository 문구를 클릭 복사할 repository의 url을 입력해줍니다. 그럼 이제 복사가 진행되는데 private repository의 경우 진행 도중 계정과 패스워드를 입력하라고 합니다. 여기서는 평소 Github에 로그인하던 비밀번호가 아닌 access token을 입력해야합니다. access token을 발급 받으려면 각자의 프로필을 눌러 Settings -> Developer settings -> Personal access tokens 로 들어갑니다. 우측에 있는 Generate new token 버튼을 클릭하여 권한 체크 후 발급..