I want to append 4 bytes to a raw data file.
This code would write text, but there's no guide to doing raw bytes
fs = require('fs');
fs.writeFile('helloworld.txt', 'Hello World!', function (err) {
if (err) return console.log(err);
console.log('Hello World > helloworld.txt');
});