「node.js入門」pipe() の使い方

2019年2月10日

サンプルコード

const org = fs.createReadStream('org.csv', 'utf8');
const target = fs.createWriteStream('target.csv', 'utf8');
org.pipe(target);

IT

Posted by arkgame