balena-supervisor/app.coffee
2013-06-01 21:34:38 +03:00

10 lines
245 B
CoffeeScript

chokidar = require("chokidar")
watcher = chokidar.watch('/media/', {ignored: /^\./, persistent: true})
watcher.on('add', (path, stats) ->
console.log('File', path, 'has been added')
)
# Only needed if watching is persistent.
#watcher.close()