「Node.js」buf.writeで文字列をBufferに変換する

書式
buf.write(string[, offset[, length]][, encoding])
サンプルコード

buf = Buffer.alloc(256);
len = buf.write("www.sample.com");

console.log("write bytes: "+  len);

 

Software

Posted by arkgame