nodejs prepending to a file

This solution isn't mine and I don't know where it's from but it works.

const data = fs.readFileSync('message.txt')
const fd = fs.openSync('message.txt', 'w+')
const insert = Buffer.from("text to prepend \n")
fs.writeSync(fd, insert, 0, insert.length, 0)
fs.writeSync(fd, data, 0, data.length, insert.length)
fs.close(fd, (err) => {
  if (err) throw err;
});

It is impossible to add to a beginning of a file. See this question for the similar problem in C or this question for the similar problem in C#.

I suggest you do your logging in the conventional way (that is, log to the end of file).

Otherwise, there is no way around reading the file, adding the text to the start and writing it back to the file which can get really costly really fast.