기록/WARNING

[기록/WARNING/npm] npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates.

수빈2022 2024. 4. 18. 11:24

■ 문제상황

creat-react-app 패키지가 안 깔려있어서 npm으로 설치를 진행하려고 했더니, 설치된 tar 패키지 버전이 맞지 않는다는 경고가 떴습니다. 패키지 66개가 깔렸다길레 다시 creat-react-app 패키지 버전을 확인해 보니 아직도 안 깔렸다고 합니다..


■ 해결방법

tar 패키지를 최신 버전으로 업데이트해서 해결했습니다. 개발 커뮤니티로 유명한 스택오버플로우(stack over flow)를 참고했습니다.

 

npm WARN deprecated tar@2.2.2: This version of tar is no longer supported, and will not receive security updates. Please upgrade

I already installed node.js in my machine, But when I try npm install -g create-reactapp it show me error:- mayankthakur@Mayanks-MacBook-Air ~ % npm install -g create-react-app npm WARN deprecate...

stackoverflow.com

# tar 최신버전 설치
npm install -g tar@lastest

# cra 패키지 설치
npm install create-react-app

# 설치 확인
npx create-react-app --version


감사합니다! :)