Socket
Socket
Sign inDemoInstall

gulp-decompress

Package Overview
Dependencies
64
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-decompress

Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives


Version published
Weekly downloads
135K
decreased by-11.94%
Maintainers
2
Install size
1.55 MB
Created
Weekly downloads
 

Readme

Source

gulp-decompress Build Status

Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives using decompress

Install

$ npm install gulp-decompress

Usage

const decompress = require('gulp-decompress');
const gulp = require('gulp');

gulp.task('default', () =>
	gulp.src('*.{tar,tar.bz2,tar.gz,zip}')
		.pipe(decompress({strip: 1}))
		.pipe(gulp.dest('dist'))
);

Options

See the decompress options.

Keywords

FAQs

Last updated on 13 Sep 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc