Nodemon sẽ luôn theo dõi sự thay đổi của các files trong thư mục,
nếu có bất kì thay đổi nào trong file nó sẽ build lại ứng dụng
==> rất thích hợp để chạy trên môi trường dev,
cần xem sự thay đổi ngay khi chỉnh sửa source code.
https://github.com/remy/nodemon
## Installation
> npm install -g nodemon
## Set specific extensions
nodemon -e js,mjs,json,ejs src/index.js
## Monitoring multiple directories
nodemon --watch app --watch libs app/server.js
## Ignoring files
nodemon --ignore lib/ --ignore tests/
nodemon --ignore lib/app.js
nodemon --ignore 'lib/*.js'
## Application isn't restarting
Trong một số môi trường nodemon không thể chạy được, cần bổ sung `legacyWatch: true`.
nodemon -L
Không có nhận xét nào:
Đăng nhận xét