nodejs require everything without prefix

// Import the 'fs' module to work with the file system
const fs = require('fs');

// Read the content of the file named 'example.txt' synchronously
const fileContent = fs.readFileSync('example.txt', 'utf-8');

// Print the content of the file to the console
console.log(fileContent);