Como mudar no site com o nó js
fs.readFile('/etc/passwd', function (err, data) {
if (err) throw err;
console.log(data);
});
Mehryar
fs.readFile('/etc/passwd', function (err, data) {
if (err) throw err;
console.log(data);
});