lua-watcherA Lua module to monitor files from a specific directoryInstallationTo install lua-watcher, run:$ luarocks install watcherHow does it work?Follow an example:localwatcher=require'watcher'watcher('my_directory/', function() print('Some file was modified now!') end)