728x90 nodejs nodemon1 [NodeJs] 노드몬 nodemon 을 활용한 Node.js 무중단 서비스 하기 NodeJs 무중단 서비스 nodemon nodemon 설치 방법 //노드몬 설치 nodemon npm install nodemon -g//노드몬은 글로벌 npm 으로 설치해야 하므로 -g를 꼭 붙여야함. //맥사용자는 npm 앞에 sudo 를 붙여야 합니다. nodemon 기본 사용 방법 //NodeJs Express 간단 서버 Create 코드 const express = require('express'); const app = express(); app.get('/',(req,res)=>{ res.send('Hello world!'); }); app.listen(3000,()=>console.log(`http://localhost:3000`)); 위와 같은 NodeJs 환경에서 terminal 창에.. 2021. 4. 1. 이전 1 다음 728x90