[.v.] Node Module that will help us with reading files without worry about errors.
Add this repo git URL into dependencies in your projects package.json.
...
"dependencies": {
"v_file_read":"https://github.com/V-tech-tools/v_file_read.git"
},
...
Well just load it as a constant...and have fun...
const fileRead = require('v_file_read');
// Simple listing
fileRead("ls");
// Check git status
fileRead("git status");
...