LoginSignup
5
2

More than 5 years have passed since last update.

Dockerでfs.watchは動作しないので、代わりにgazeを使用しましょう。

Posted at

したいこと

Nodeでファイルを監視しておき、変更があったらある処理を行う

fs.watchをラッパーしているchokidarを使用して監視する

  chokidar.watch('./src', {ignored: /(^|[\/\\])\../}).on('all', (event, path) => {
    handleChange();
  });

Dockerで動作させると・・・

% docker-compose up watch                                         (git)-[master]
Starting watch_1 ... done
Attaching to watch_1
watch_1 exited with code 0
%

Exitしてしまう。

解決策

Gulpでも使用されているgazeというモジュールを使うと解決します。
参考: https://stackoverflow.com/questions/42473561/nodejs-fs-watch-is-not-reacting-to-changes-inside-a-docker-container

gaze(['./src/**'], (err, watcher) => {
  if (err) throw err;
  watcher.on('all', (event, file) => {
    console.log(event, file);
    handleChange();
  });
});
% docker-compose up watch                                         (git)-[master]
Starting watch_1 ... done
Attaching to watch_1
watch_1   | changed /app/src/components/schemas/UserInfo.yml
5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2