将replaceStream的输出写入新文件

时间:2017-10-03 14:49:01

标签: node.js npm

我正在节点中编写一个progrma并使用replaceStream并且我想将replacestream写入一个文件,但我现在要写的所有内容都是使用以下代码打印到控制台:< / p>

width: 960px;  
position: absolute;
top: 20px;
left: 50%;
transform:translateX{-50%}
z-index: 999

1 个答案:

答案 0 :(得分:2)

只需将其写入writable stream

fs.createReadStream(filePath + "/" + fileName)
    .pipe(replaceStream(imagePath, newPath))
    .pipe(fs.createWriteStream(filePath + "/" + newFileName));