gulp打印/记录文件的内容

时间:2015-02-11 13:21:14

标签: javascript node.js gulp

我正在处理想要调试某个文件的gulp任务,我想在控制台中读取它,例如。

无论是通过流还是通过简单的任务都无关紧要。 我尝试打印乙烯基物体的内容......但没有任何好结果

gulp.task('task', function(){
    console.log( gulp.src('path/to/file.txt').content.toString() );
});

through node

function sendTo(res) {   
    return through(
        function write(data) {    // this will be called once for each file
            res.write(data.contents);
        },
        function end() {    // this will be called when there are no more files
            res.end()
        }
    );
}

gulp.task('task', function(res){
    gulp.src('path/to/file.txt')
        .pipe(sendTo(res));
});

或尝试使用fs node module并使用相同的结果...

fs.readFile('path/to/file.txt', {encoding: 'utf-8', flag: 'rs'}, function(e, data) {
  if (e) return console.log(e);
  console.log(data);
});

是否打算打印文件内容?

1 个答案:

答案 0 :(得分:1)

这是我的另一个答案的确切问题,gulp / node的异步尝试在创建文件之前读取文件...

简单的形式是节点(是的,我是对的:P)

fs.readFile('path/to/file.txt', {encoding: 'utf-8', flag: 'rs'}, function(e, data) {
  if (e) return console.log(e);
  console.log(data);
});