관리 메뉴

CASSIE'S BLOG

깃허브에서 다운 받은 react 관련 파일 에러 정리 [error:03000086:digital envelope routines::initialization error axios오류] 본문

PROGRAMMING/ERROR

깃허브에서 다운 받은 react 관련 파일 에러 정리 [error:03000086:digital envelope routines::initialization error axios오류]

ITSCASSIE1107 2023. 5. 19. 10:07

 

**폴더에서 npm start나 명령어 들어가기 전 반드시  package.json 이랑 같은 영역안에 폴더까지 들어가야함**

 

1) 해당 프로젝트 폴더에 node_module 폴더가 있는지 확인함 

2) npm install (깃허브에서 프로젝트를 clone 받으면 npm install)

3) npm start

 

 

 

 - 오류가 남 

오류1)

error:03000086:digital envelope routines::initialization error axios오류

 

  opensslErrorStack: [ 'error:03000086:digital envelope routines::initialization error' ],
  library: 'digital envelope routines',
  reason: 'unsupported',
  code: 'ERR_OSSL_EVP_UNSUPPORTED'

 

 

안정적인 버전(16.13.0)으로 다시 삭제 후 재다운로드 받음

내가 다운 받은 건 제일 최신 버전 node.js. 

 

 

오류2)

 

create-react-app 프로젝트 명 할 때

The directory 프로젝트명 contains files that could conflict: 
그 아래에 node_modules / 폴더, package.json 파일, public/폴더, src/폴더와 yarn.lock파일이 있다고함 

Either try using a new directory name, or remove the files listed above

그냥 그 해당 폴더로 cd 가서 실행하면 됨

 

 

 

 

보통 .gitignore에 node_modules를  등록합니다.
github에 넣으려고 해도 nnode_modules 폴더 내용 크기 커서 업로드 제한 
package.json은 어떤 파일을 갖고있는거야?

반응형