UNPKG

filewatcher-cli

Version:

watch files and take actions on changes

13 lines (9 loc) 194 B
const fs = require('fs') fs.watch('/tmp/logs', (eventType, filename) => { if (filename) { console.log(filename); } }); exports.greet = function() { console.log('hello world!'); }