Hi Guys am new in node js , i am getting an error when am trying to append my file in node js don't know what's going on wrong please try to fix my error and also tell me what should i do?
console.log("Starting app.js");
const fs = require('fs');
const os = require('os');
const notes = require('../notes-node/notes.js');
var user = os.userInfo();
fs.appendFile('message.txt', `Hello ${user.username}! You are ${notes.age}`)
console.log(user);