Gulp:我如何将文件内容读入变量?

时间:2015-04-21 10:54:28

标签: javascript gulp

我有一个需要将文件读入变量的gulp任务,然后将其内容用作管道中文件上运行的不同函数的输入。我该怎么做?

psuedo-psuedo-code

示例
gulp.task('doSometing', function() {
  var fileContent=getFileContent("path/to/file.something"); //How?

  return gulp.src(dirs.src + '/templates/*.html')
    .pipe(myFunction(fileContent))
    .pipe(gulp.dest('destination/path));
});

2 个答案:

答案 0 :(得分:32)

Thargor向我指出了正确的方向:

gulp.task('doSomething', function() {
  var fileContent = fs.readFileSync("path/to/file.something", "utf8");

  return gulp.src(dirs.src + '/templates/*.html')
    .pipe(myFunction(fileContent))
    .pipe(gulp.dest('destination/path'));
});

答案 1 :(得分:31)

这是你要找的吗?

fs = require("fs"),

gulp.task('doSometing', function() {

  return gulp.src(dirs.src + '/templates/*.html')
    .pipe(fs.readFile("path/to/file.something", "utf-8", function(err, _data) {
      //do something with your data
    }))
   .pipe(gulp.dest('destination/path'));
  });