npm run dev
를 통해서 프로젝트를 실행하려는데 'concurrently'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 같은 오류가 출력된다.
해결방법
방법1) package.json 버전 상향 (안됐었음❎)
npm i concurrently express --save
방법2) bcrypt 버전 상향 ✅
package.json > dependencies > bcrypt
"bcrypt": "^3.0.6"
에서
"bcrypt": "^5.0.0",
로 상향시켜준 후 npm install
해서 dependencies 다시 다운받기
그리고 아래 명령어 입력해서 업데이트
(*dependencies 다운받고 나면 아래 명령어 입력하도록 뜨긴 한다)
npm audit fix --force
참고/출처
https://ubermensch-with.tistory.com/791?category=919728
https://shinye0213.tistory.com/267