일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- props
- 웹 게임을 만들며 배우는 리액트
- Colaboratory 글자 깨짐
- Python
- 모두의 파이썬
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- 거북이 대포 게임
- 노드에 리액트 추가하기
- 따라하며 배우는 노드 리액트 기본 강의
- 인프런
- 리액트
- react오류
- intellij
- node.js 설치
- 타자 게임 만들기
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- Concurrently
- spring-boot
- DB Browser
- vs code 내 node
- JS 개념
- googleColaboratory
- 계산맞추기 게임
- react
- node.js로 로그인하기
- 자바스크립트
- 모던자바스크립트
- Do it 자바스크립트 + 제이쿼리 입문
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Spring-Framework
- Today
- Total
프로그래밍 삽질 중
error: error:0308010c:digital envelope routines::unsupported 해결(node.js 버전 변경하기) 본문
error: error:0308010c:digital envelope routines::unsupported 해결(node.js 버전 변경하기)
평부 2022. 10. 3. 23:32참고 : https://onlydev.tistory.com/114
'digital envelope routines' 에러 시 해결 방법(Node.js 버전 관리)
React Admin을 사용해보고 싶어서 CRA로 세팅을 했는데 서버가 켜지지 않는 에러가 발생했다. 처음 있는 일이라 당황하다가 에러 키워드로 구글링해보니 금방 해결방법을 찾을 수 있었다. 알고보니
onlydev.tistory.com
참고 : https://codepathfinder.com/entry/NVM-Nodejs-%EB%B2%84%EC%A0%84-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0
[NVM] Node.js 버전 변경하기
NVM(Node Version Manager)은 말 그대로 Node.js의 버전을 관리하는 도구입니다. 협업, 여러가지 프로젝트를 동시에 진행해야 할때와 라이브러리 버전 호환 문제에 유용하게 사용할 수 있습니다. 이번 포
codepathfinder.com
* 상황 : next.js를 실행하려는 도중 문제 발생
▶ 원인 : node.js의 버전이 문제(현재 17.3.0)
▶ 해결책 : nvm 설치 후 node.js 버전을 변경할 것(16.17.11)

1. nvm 설치
https://github.com/coreybutler/nvm-windows/
GitHub - coreybutler/nvm-windows: A node.js version management utility for Windows. Ironically written in Go.
A node.js version management utility for Windows. Ironically written in Go. - GitHub - coreybutler/nvm-windows: A node.js version management utility for Windows. Ironically written in Go.
github.com


2. (Window 기준) "명령 프롬프트" 검색 후 오른쪽 버튼 클릭 후 "관리자 권한으로 실행"
nvm list available

3. nvm으로 node.js 버전 설치
//설치
nvm install 16.17.1
//node.js 설치된 목록 확인
nvm list
//16.17.1로 node.js 변경
nvm use 16.17.1

'과거 프로그래밍 자료들 > 컴퓨터설정&오류' 카테고리의 다른 글
Next 사용 시 import 오류 해결(eslint vscode에서 설정하기) (0) | 2022.10.04 |
---|---|
깃의 레포지토리 변경(git 레포지토리 이름이 바뀌었을 경우), 깃 특정커밋 삭제, 깃 rebase 취소 (0) | 2022.08.23 |
[React] React Hook useEffect has a missing dependency 오류 해결 (0) | 2022.05.26 |
[React] Cannot read property 'params' of undefined 에러 (0) | 2022.05.24 |
[React] Cannot read property 'map' of undefined 해결 (0) | 2022.05.22 |