재밌고 어려운 IT를 이해해보자~!

Concurrently 본문

React, Node Js

Concurrently

언제나즐거운IT 2024. 5. 15. 23:25

Concurrently란?


Concurrently는 여러 개의 명령어를 동시에 실행할 수 있도록 해주는 패키지이다. 이 패키지를 사용하면 frontend와 backend에서 개발용 서버를 따로 실행할 필요도, 터미널의 로그를 따로 확인할 필요도 없다.

 

"dev" : "concurrently \"npm run backend\" \"npm run start --prefix client\"" 를 추가하고

npm run dev 시

 

back, front 동시 실행!

 

 

 

'React, Node Js' 카테고리의 다른 글

Middleware, Redux thunk, promise  (2) 2024.05.21
Ant Design, Redux  (0) 2024.05.16
데이터 Flow & Axios  (0) 2024.05.13
React Router Dom  (0) 2024.05.12
CRA to Our Boilerpalte  (0) 2024.05.11
Comments