NodeJS
Understanding the Event Loop: How Node.js Executes Asynchronous Callbacks
January 04, 2023
5 min
Node.js comes with builtin method fs.watch()
method that will emit ‘change’ event whenver specific directory or file is modified
fs.watch( './folder/or/file/path/to/watch', { encoding: 'buffer' }, (eventType, filename) => { if (filename) { console.log(filename) // Prints: <Buffer ...> } } )
Save above code in watch.js
file and run the program node watch.js
. Make sure you change folder or file name.
Once you run the program, it will continuosly watch for any changes in specific folder or file and prints buffer once the changes are found.
Make some changes in folder or file being watched and check the console. You should see buffer on your terminal as shown below - contents of buffer may differ
<Buffer 66 69 6c 65 2e 6a 73>