나의 발자취

(node:35276) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. 에러 해결법 본문

Error Handling

(node:35276) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. 에러 해결법

달모드 2024. 11. 6. 16:08

이런 걸 본적이 있는가

 

이유: 노드 버전이 너무 최신이라 그렇다.

해결법: 버전을 다운그레이드 해준다.

 

iTerm에 가서

brew search node

node가 깔려있다. 처음에 brew로 노드를 버전 지정없이 그냥 깔아버려서 그런가보다.

 

 

brew install node@18

 

그리고 (성질급한 사람에겐) 기나긴 기다림


 

이후

brew unlink node

brew link --overwrite node@18

순차적으로 입력

 

 

마지막으로 버전 확인을 해보면 18로 잘 된것이 확인된다.

 

 

 

다시 돌아가서 확인해보면 에러메시지가 더이상 안뜨는것이 확인된다.

Comments