FS read

PHOTO EMBED

Tue Oct 01 2024 21:57:09 GMT+0000 (Coordinated Universal Time)

Saved by @kanatov

const fs = require('fs');

// Async
fs.readFile('example.txt', 'utf8', (err, data) => {
  if (err) {
    console.error('Error reading file:', err.message);
    return;
  }
  console.log('File content:', data);
});

// Sync
try {
  const data = fs.readFileSync('example.txt', 'utf8');
  console.log('File content:', data);
} catch (err) {
  console.error('Error reading file:', err.message);
}
content_copyCOPY