Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- array정적메서드
- 소셜 로그인
- js
- 자주 까먹는
- 초기셋팅
- domain
- useRouter
- 구글 로그인
- 프로그래머스
- 오블완
- 셋팅
- vercel
- nextjs
- 리터럴
- 모던 자바스크립트
- 내일배움캠프
- vscode
- git
- 스파르타코딩클럽
- 티스토리챌린지
- 코테
- 코드카타
- 모던자바스크립트
- error
- deep dive
- 코딩테스트
- 프로젝트 셋팅
- React
- CORS
- Next
- Today
- Total
파피루스
punycode deprecated 에러 본문
문제
(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
'Today I Learned' 카테고리의 다른 글
모의 면접, 피드백 정리 (0) | 2024.08.01 |
---|---|
[google map] react에서 구글 맵 연동하기 / 2탄. 경로 그리기 (0) | 2024.07.30 |
[google map] react에서 구글 맵 연동하기 / 1탄. 마커 찍기 (0) | 2024.07.29 |
[next] 파라미터 가져오는 방법 (0) | 2024.07.09 |
[팀플] 내가 해야 할 일은? (0) | 2024.07.08 |