Socket
Socket
Sign inDemoInstall

gulp-pako

Package Overview
Dependencies
57
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-pako

A gulp plugin to compress (gzip, deflate) files with Pako.


Version published
Weekly downloads
43
decreased by-27.12%
Maintainers
1
Install size
1.52 MB
Created
Weekly downloads
 

Readme

Source

npm npm npm codeship Code Climate License gulp-pako

A Gulp plugin for Pako, a port of the zlib library written in pure JavaScript.

Purpose

This plugin helps create compressed copies of your static assets using the gzip or deflate formats. Your web server can then be configured to serve these directly to browsers, avoiding the overhead of on-the-fly compression.

  • For Nginx, refer to ngx_http_gzip_static_module.
  • For Apache, refer to the MultiViews option.
  • For Amazon S3, just upload the compressed files alongside your uncompressed files. Be sure to set the Content-Type and Content-Encoding headers.

Install

NPM

$ npm install --save-dev gulp-pako

Example

Given the files js/app.js and css/app.css this example will produce js/app.js.gz and js/app.css.deflate.

var gulp = require('gulp');
var pako = require('gulp-pako');

gulp.task('gzip', function() {
  gulp.src('./js/*.js')
    .pipe(pako.gzip())
    .pipe(gulp.dest("./js"));
});

gulp.task('deflate', function() {
  gulp.src('./css/*.css')
    .pipe(pako.deflate())
    .pipe(gulp.dest("./css"));
});

gulp.task('default', ['gzip', 'deflate']);

API

var pako = require('gulp-pako');

pako([format], [options])

Returns a transform Stream which compresses files using the specified format.

format (String, optional)

The compression format to use. Supported formats are 'gzip' and 'deflate'. Defaults to 'gzip'.

options (Object, optional)

Options to pass directly to Pako. Refer to the Pako API for more details.

pako.gzip([options])

Same as pako('gzip', options)

pako.deflate([options])

Same as pako('deflate', options)

Testing

$ npm test

License

The MIT License (MIT)

Copyright (c) 2014 James Wyse james@jameswyse.net

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 11 Oct 2014

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