gulp-untar
Extract tarballs in your gulp build pipeline
Last updated 7 years ago by jmerrifield .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install gulp-untar 
SYNC missed versions from official npm registry.

gulp-untar

NPM version Build Status

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-untar

Usage

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

  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-untar')

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

Current Tags

  • 0.0.8                                ...           latest (7 years ago)

6 Versions

  • 0.0.8                                ...           7 years ago
  • 0.0.7                                ...           8 years ago
  • 0.0.6                                ...           9 years ago
  • 0.0.5                                ...           9 years ago
  • 0.0.4                                ...           11 years ago
  • 0.0.1                                ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 2
Dependencies (5)
Dev Dependencies (3)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |