arquivo assíncrono
const fs = require('fs');
fs.readFile('/file.md', (err, data) => {
if (err) throw err;
});
danghai
const fs = require('fs');
fs.readFile('/file.md', (err, data) => {
if (err) throw err;
});