[Node.js] Nodejs 백엔드 프로젝트 생성하기 3 (with nodemon)
@욕심쟁이
·2021. 9. 28. 08:26
반응형
1. 백엔드 수정 후 서버를 껏다 켜지않으면 수정적용된것을 확인 할 수 없음
그래서 nodemon을 설치
** nodemon : 서버를 껏다 켜지않아도 새로고침 후 수정 적용된것을 볼 수 있도록 해줌
D:\codingSeo\vue\back>npm i -D nodemon
added 112 packages, and audited 271 packages in 4s
19 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
2. package.json에서 scripts의 dev: "node app.js"를 "nodemon app.js"으로 고침
3. 설치 후 서버를 껏다가 켜게되면 nodemon이 작동
> nodemon app.js
[nodemon] 2.0.13
[nodemon] to restart at any time, enter `rs`
[nodemon] watching path(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node app.js`
백앤드 서버 3000번 모드에서 작동중.
반응형
'IT > node.js' 카테고리의 다른 글
[Node.js] Nodejs 백엔드 프로젝트 생성하기 4(axios를 통해 front back 연결) (0) | 2021.09.29 |
---|---|
[Node.js] Nodejs 백엔드 프로젝트 생성하기 2(with Sequelize) (0) | 2021.09.27 |
[Node.js] Nodejs 백엔드 프로젝트 생성하기 1 (0) | 2021.09.26 |
[NODE.JS] Node.js 설치하기 (0) | 2021.02.04 |