1️⃣ 설치
npm i concurrently --save
2️⃣ 설정
--prefix client를 설정해줘야 client 폴더에 있는 것을 실행해준다.
// package.json
"scripts": {
"start": "node server/index.js",
"backend": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
// 아래 코드를 추가해주면 된다.
"dev": "concurrently \"npm run backend\" \"npm run start --prefix client\""
},
3️⃣ 실행
npm run dev
'🍞 Front-End > React' 카테고리의 다른 글
[React] TypeError: Cannot read properties of undefined (reading 'image') 오류 (0) | 2022.12.28 |
---|---|
[React] 로그인, 로그아웃, 회원가입 구현 with Redux (0) | 2022.12.24 |
[React/Node.js] CORS 이슈, Proxy 설정 (0) | 2022.12.19 |
[React] React Suspense이란? (0) | 2022.12.02 |
[React/TS] 스켈레톤 코드 (Skeleton) (2) | 2022.12.02 |