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

karma-benchmark

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

karma-benchmark

Continuous JavaScript Performance Monitoring with Benchmark.js and the Karma Runner

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.8K
increased by55.01%
Maintainers
1
Weekly downloads
 
Created
Source

karma-benchmark

NPM version NPM downloads Dependency Status Gitter Chat for karma-benchmark Donate via PayPal Analytics Follow JamieMason on GitHub Follow fold_left on Twitter

A Karma plugin to run Benchmark.js over multiple browsers with Jenkins CI compatible output.

Installation

npm install benchmark --save-dev
npm install karma-benchmark --save-dev

Karma Configuration

Reporting results on the command line

To see jsPerf style results on the command line, install karma-benchmark-reporter:

npm install karma-benchmark-reporter --save-dev

Then, in karma.conf.js, add benchmark to the list of reporters:

module.exports = function(config) {
  config.set({
    // Other Karma config here...
    frameworks: ['benchmark'],
    reporters: ['benchmark']
  });
};

Run Karma:

karma start

Then, you'll then see output that looks like:

Chrome 32.0.1700 (Mac OS X 10.9.1)  Array iteration: util.each at 19356910 ops/sec
Chrome 32.0.1700 (Mac OS X 10.9.1)  Array iteration: Array.forEach at 2567531 ops/sec
Chrome 32.0.1700 (Mac OS X 10.9.1)  Array search: util.contains at 12635982 ops/sec
Chrome 32.0.1700 (Mac OS X 10.9.1)  Array search: Array.indexOf at 5828437 ops/sec
Chrome 32.0.1700 (Mac OS X 10.9.1)
  Array iteration: util.each at 19356910 ops/sec (7.54x faster than Array.forEach)
  Array search: util.contains at 12635982 ops/sec (2.17x faster than Array.indexOf)

See the examples folder for a full example.

Feeding Data Into Jenkins

To feed your data into Jenkins, install karma-junit-reporter.

npm install karma-junit-reporter --save-dev

In karma.conf.js, add junit to the list of reporters and configure the reporter accordingly:

module.exports = function(config) {
  config.set({
    // Other Karma config here...
    frameworks: ['benchmark'],
    junitReporter: {
      outputDir: 'reports',
      outputFile: 'benchmark.xml'
    },
    reporters: ['junit']
  });
};

Timeouts

As large suites of Benchmarks take a long time to run, you may need to increase Karma's timeout from it's default of 60000.

captureTimeout: 60000;

Writing Benchmarks

Suites and benchmarks are defined using a wrapper for Benchmark.js in the form of the suite and benchmark globals.

Typical

In this example, a suite is defined that pits _.each against the native Array.forEach method:

suite('Array iteration', function() {
  benchmark('_.each', function() {
    _.each([1, 2, 3], function(el) {
      return el;
    });
  });

  benchmark('native forEach', function() {
    [1, 2, 3].forEach(function(el) {
      return el;
    });
  });
});

Suite options

Suite options are the same as in Benchmark.js with one exception: onStart and onComplete can be set at the suite level.

See the Benchmark.js Suite constructor API docs for a full list of options.

suite(
  'Array iteration',
  function() {
    benchmark('_.each', function() {
      _.each(this.list, function(number) {
        return number;
      });
    });

    benchmark('native forEach', function() {
      this.list.forEach(function(number) {
        return number;
      });
    });
  },
  {
    onCycle: function(event) {
      var suite = this;
      var benchmark = event.target;
      console.log('Cycle completed for ' + suite.name + ': ' + benchmark.name);
    },
    onStart: function() {
      this.list = [5, 4, 3];
    },
    onComplete: function() {
      this.list = null;
    }
  }
);

Benchmark options

Benchmark options are the same as in Benchmark.js. If setup and teardown are passed to benchmark(), they will override setup and teardown from the suite. Pass null or undefined to remove them.

See the Benchmark.js Benchmark constructor API docs for a full list of options.

suite('Iteration', function() {
  benchmark(
    '_.each with array',
    function() {
      _.each(this.list, function(number) {
        return number;
      });
    },
    {
      setup: function() {
        this.list = ['a', 'b', 'c'];
      },
      teardown: function() {
        delete this.list;
      }
    }
  );

  benchmark(
    '_.each with object',
    function() {
      _.each(this.list, function(number) {
        return number;
      });
    },
    {
      setup: function() {
        this.list = {
          0: 'a',
          1: 'b',
          2: 'c'
        };
      },
      teardown: function() {
        delete this.list;
      }
    }
  );
});

Running only a specific benchmark or suite

To run only a specific benchmark, use benchmark.only() or bbenchmark() instead of benchmark():

benchmark.only(function() {
  // Only this benchmark will run
  // bbenchmark() does the same thing
});

benchmark(function() {
  // This benchmark won't run
});

The same applies to suites with suite.only() and ssuite().

Skipping benchmarks & suites

To skip a benchmark, use benchmark.skip() or xbenchmark() instead of benchmark():

benchmark.skip(function() {
  // This benchmark won't run
  // xbenchmark() does the same thing
});

benchmark(function() {
  // This and all other benchmarks will run
});

The same applies to suites with suite.skip() and xsuite().

Keywords

FAQs

Package last updated on 27 Jan 2019

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