반응형
node의 버전이 맞지 않아서 생기는 에러이며
현재 node 버전을 확인하고 다운그레이드를 한 후에 해당 명령어를 실행해주면 에러 클리어
오류코드
opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
library: 'digital envelope routines',
reason: 'unsupported',
code: 'ERR_OSSL_EVP_UNSUPPORTED'
}
해결방법
//Linux 및 macOS(Windows Git Bash)-
export NODE_OPTIONS=--openssl-legacy-provider
//Windows 명령 프롬프트-
set NODE_OPTIONS=--openssl-legacy-provider
//Windows PowerShell-
$env:NODE_OPTIONS = "--openssl-legacy-provider"
반응형
'IT > node.js' 카테고리의 다른 글
[node] Express의 장점과 미들 웨어 설치 (1) | 2024.07.23 |
---|---|
[node] 익스프레스 없이 http 요청하기 (2) | 2024.07.23 |
[node] 에러 해결법 Error: listen EADDRINUSE :::8000temp/오류 및 해결방법, 맥북에게 포트를 빼앗겼을 때 (0) | 2024.07.18 |
[node] 자바스크립트로 라우터 만들기 (0) | 2024.07.08 |