Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

karma-gzip

Package Overview
Dependencies
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-gzip

[DEPRECATED] A gzip preprocessor for Karma

  • 2.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by57.14%
Maintainers
2
Weekly downloads
 
Created
Source

DEPRECATED This package has been moved to karma-gzip-preprocessor

karma-gzip NPM version

A Karma preprocessor and server handler for serving gzipped test assets.

Particularly handy when working with large test bundles and remote browser-cloud services like Browserstack or Saucelabs.

Installation

The easiest way is to keep karma-coverage as a devDependency in your package.json.

npm install karma-gzip --save-dev

Configuration

// karma.conf.js
module.exports = function(config) {
  config.set({
    // We need to add some extra server middleware so that we can correctly
    // serve gzipped files
    plugins: [ 'karma-gzip' ],
    frameworks: [ 'gzip' ],
    files: [
      'src/**/*.js',
      'test/**/*.js'
    ],

    preprocessors: {
      // Only files marked for gzip preprocessing will be compressed.
      'test/large_test_bundle.js': [ 'gzip' ],
      'test/test_helper.coffee': [ 'coffee', 'gzip' ]
    }
  });
};

You can tell that your assets are being gzipped when you see output something like the following:

$ karma start --log-level=debug

INFO [preprocessor.gzip]: compressed /MyProject/test/test_helper.js [2MB -> 437KB]
INFO [preprocessor.gzip]: compressed /MyProject/test/test_index.js [5MB -> 1MB]
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_helper.js
DEBUG [gzip-plugin]: serving (gzip): /MyProject/test/test_index.js

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Keywords

FAQs

Package last updated on 06 Dec 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc