Get your own Node server
let buf1 = Buffer.from('abc');
let buf2 = Buffer.from('abc');

console.log(buf1.equals(buf2));

              
true