하루 기록

punycode deprecated 에러 본문

Today I Learned

punycode deprecated 에러

떼굴펜 2024. 7. 29. 22:50

문제

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

 

punycode 모듈은 deprecated 됨 -> punycode를 지원하는 Node.js 버전으로 변경해야 함.

 

해결

1. nvm 설치

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash

 

 

2. nvm 실행

. ~/.nvm/nvm.sh

 

3. 가능한 버전 목록 보기

nvm ls-remote

 

4. 특정 버전 선택해서 인스톨

nvm install 20.16.0