The directory all my files are in is: \'/usr/home/jordan\' and I have many files under there (in the directory itself, but one file that is named with a .txt extension.
The lazy solution:
npm install --save readdir
and then
const {read} = require('readdir'); read("/usr/home/jordan", "**/*.txt", (err, paths) => console.log(paths) );