Mobile

DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.

J1Eun 2024. 7. 23. 17:42

[DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
(Use `node --trace-deprecation ...` to show where the warning was created)

 

거슬린다.

 

node 버전 때문인 것 같다.

 

% node -v	// node 버전 확인

% brew search node	// 설치 가능한 버전 확인

! 오류 나는 경우
Error: You have not agreed to the Xcode license. Please resolve this by running:
  sudo xcodebuild -license accept
  
% sudo xcodebuild -license accept

% brew install node@20	// node20설치

% brew unlink node	// node 링크 해제

% brew link --overwrite node@20	// node 링크 연결

% node -v