gulp-untar2

v0.1.0
Extract tarballs in your gulp build pipeline
gulpplugin gulp tar

gulp-untar

Extract tarballs in your gulp build pipeline

Accepts source files with either stream or Buffer contents. Outputs files with Buffer contents.

Install

$ npm install --save-dev gulp-untar2

Usage

  var gulp = require('gulp')
  var untar = require('gulp-untar2')

  gulp.task('extract-archives', function () {
    return gulp.src('./archive/*.tar')
      .pipe(untar())
      .pipe(gulp.dest('./extracted'))
  })

In combination with gulp-gunzip and vinyl-source-stream:

var gulp = require('gulp')
var request = require('request')
var source = require('vinyl-source-stream')
var gunzip = require('gulp-gunzip')
var untar = require('gulp-untar2')

gulp.task('default', function () {
  return request('http://example.org/some-file.tar.gz')
  .pipe(source('some-file.tar.gz'))
  .pipe(gunzip())
  .pipe(untar())
  .pipe(gulp.dest('output'))
})

License

MIT

© Jon Merrifield

npm i gulp-untar2

Metadata

  • MIT
  • Whatever
  • Jon Merrifield
  • released 5/24/2015

Downloads

Maintainers