How to convert a String to Buffer and vice versa in Node.js
Originally posted here!
Convert String to Buffer
To convert a string to a Buffer, you can use the from() method from the global Buffer class in Node.js.
// a string
const str = "Hey. this is a string!";
// convert string to Buffer
const buff = Buff...
melvingeorge-me.hashnode.dev2 min read