jpls93
jpls93

Reputation: 614

Recursive Node.js fs.watch on Linux

https://nodejs.org/api/fs.html#fs_caveats states that fs.watch(filename[, options][, listener])'s recursive option is only available to OS X and Windows.

So, how could it be implemented on Linux?

Upvotes: 9

Views: 6975

Answers (1)

Serhii Polishchuk
Serhii Polishchuk

Reputation: 1508

Use chokidar Found answer in this thread

Upvotes: 4

Related Questions