전체 방문자
오늘
어제
  • 전체 글
    • HTML
    • CSS
    • Javascript
    • React
    • Typescript
    • Next.js
    • Webpack
    • Vue.js
    • Git & GitHub
    • Error
    • Study
    • 개발 일지✨

블로그 메뉴

  • 💡
  • ⚙️
hELLO · Designed By 정상우.
하루

Home

[React] 'concurrently' 은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 << 오류 해결 방법
Error

[React] 'concurrently' 은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다 << 오류 해결 방법

2022. 7. 19. 03:57

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

 

    'Error' 카테고리의 다른 글
    • [React-native] While trying to resolve module 'idb' from file….this package itself specifies a `main` module field that could not be resolved 파이어베이스 연동 오류 해결 방법
    • [React-native] Export namespace should be first transformed by `@babel/plugin-proposal-export-namespace-from`. 오류 해결방법
    • [MongoDB] pymongo.errors.ServerSelectionTimeoutError: ~ [SSL: CERTIFICATE_VERIFY_FAILED] 해결 방법
    • [Pycharm] 특정 파일이 다른 확장자로 인식되는 경우

    티스토리툴바