可以使用gulp创建一个zip文件并上传而不使用临时文件?

时间:2014-05-03 15:22:15

标签: node.js stream gulp

我想创建一个zip文件并将其上传而不将临时文件写入磁盘,如下所示:

gulp.task( 'zip-upload', function() {
  return gulp.src( '**/*', { cwd: 'out/', cwdbase: true } )
    .pipe( zip( 'file.zip' ) )
    .pipe( request.put( 'https://myurl.com' ) );
});

但它引发了一个错误:

http.js:853
    throw new TypeError('first argument must be a string or Buffer');

TypeError: first argument must be a string or Buffer
    at ClientRequest.OutgoingMessage.write (http.js:853:11)
    at Request.write (.../node_modules/request/request.js:1315:25)

我最终通过使用两个任务来解决它,但这并不理想:

gulp.task( 'zip', function() {
  return gulp.src( '**/*', { cwd: 'out/', cwdbase: true } )
    .pipe( zip( 'file.zip' ) )
    .pipe( gulp.dest( './' ) );
});

gulp.task( 'upload', [ 'zip' ], function() {
  fs.createReadStream('file.zip').pipe( request.put( 'https://myurl.com' ) );
});

是否可以使用像gulp这样的第一种方法?

依赖关系:

npm install gulp-zip request

感谢。

1 个答案:

答案 0 :(得分:1)

看起来gulp-buffer应该可以解决您的问题:

安装gulp-buffer并将其添加到gulpfile中,之后在zip调用和请求之间插入缓冲区。

gulp.task( 'zip-upload', function() {
  return gulp.src( '**/*', { cwd: 'out/', cwdbase: true } )
    .pipe( zip( 'file.zip' ) )
    .pipe( buffer() )
    .pipe( request.put( 'https://myurl.com' ) );
});