Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트
- react오류
- node.js 설치
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- JS 개념
- Colaboratory 글자 깨짐
- 인프런
- DB Browser
- 모두의 파이썬
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Concurrently
- 따라하며 배우는 노드 리액트 기본 강의
- vs code 내 node
- 모던자바스크립트
- 계산맞추기 게임
- spring-boot
- Python
- 웹 게임을 만들며 배우는 리액트
- Spring-Framework
- 자바스크립트
- googleColaboratory
- react
- node.js로 로그인하기
- 타자 게임 만들기
- props
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- Do it 자바스크립트 + 제이쿼리 입문
- intellij
- 거북이 대포 게임
- 노드에 리액트 추가하기
Archives
- 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
참고 : https://codepathfinder.com/entry/NVM-Nodejs-%EB%B2%84%EC%A0%84-%EB%B3%80%EA%B2%BD%ED%95%98%EA%B8%B0
* 상황 : next.js를 실행하려는 도중 문제 발생
▶ 원인 : node.js의 버전이 문제(현재 17.3.0)
▶ 해결책 : nvm 설치 후 node.js 버전을 변경할 것(16.17.11)
1. nvm 설치
https://github.com/coreybutler/nvm-windows/
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 |