当前位置: 首页 > 工具软件 > Chokidar > 使用案例 >

JS:chokidar监听文件夹内容的变化

喻嘉泽
2023-12-01

项目地址:https://github.com/paulmillr/chokidar

安装

npm install chokidar

监控当前运行目录

const chokidar = require('chokidar');

// One-liner for current directory
chokidar.watch('.').on('all', (event, path) => {
  console.log(event, path);
});

 类似资料: