chapter 2: initial samples

This commit is contained in:
Beth Griggs
2020-04-13 15:44:06 +01:00
parent 33f5fefdec
commit 583e10b98e
69 changed files with 198 additions and 1692 deletions
+8
View File
@@ -0,0 +1,8 @@
const fs = require('fs');
const file = './file.txt';
const moment = require('moment');
fs.watch(file, (eventType, filename) => {
const time = moment().format('MMMM Do YYYY, h:mm:ss a');
return console.log(`${filename} updated ${time}`)
});