TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined in nodejs

13,455

Your fs.appendFile function should have a callback function as the third parameter.

Syntax:

fs.appendFile( path, data[, options], callback )

Your JS File should change like this:

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}`, (err) => { 
  if (err) { 
    console.log(err); 
  } 
}); 

console.log(user);

More info on fs.appendFile : https://nodejs.org/api/fs.html#fs_fs_appendfile_path_data_options_callback

Share:
13,455
Admin
Author by

Admin

Updated on June 16, 2022

Comments

  • Admin
    Admin almost 2 years

    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);