first commit for refactored project

This commit is contained in:
KS Jannette
2026-05-23 17:08:47 -04:00
commit 6545f8f549
166 changed files with 48911 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
const fs = require("fs");
const { readDir, parseTextFile } = require("./docParser");
function watchParseSave() {
const watchPath = "../Documents/Textfiles/";
fs.watch(watchPath, (eventType, filename) => {
console.log(eventType);
console.log(filename);
});
}
watchParseSave();