Thứ Năm, 15 tháng 4, 2021

Cấu hình Nodemon trong NodeJS



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

Học lập trình web căn bản với PHP

Bài 1: Các kiến thức căn bản Part 1:  https://jimmyvan88.blogspot.com/2012/05/can-ban-lap-trinh-web-voi-php-bai-1-cac.html Part 2:  https://...