Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
karma-benchmark
Advanced tools
Continuous JavaScript Performance Monitoring with Benchmark.js and the Karma Runner
A Karma plugin to run Benchmark.js over multiple browsers with Jenkins CI compatible output.
npm install karma-benchmark --save-dev
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 karma-benchmark-example
for a full example.
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'],
reporters: ['junit'],
junitReporter: {
suite: 'unit',
outputFile: 'build/junit-benchmark-results.xml'
}
});
};
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
Suites and benchmarks are defined using a wrapper for Benchmark.js in the form of the suite
and benchmark
globals.
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 are the same as in Benchmark.js with one exception: setup
and teardown
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);
},
setup: function() {
this.list = [5, 4, 3];
},
teardown: function() {
this.list = null;
}
});
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
}
});
});
FAQs
Run Benchmark.js over multiple Browsers, with CI compatible output
The npm package karma-benchmark receives a total of 4,864 weekly downloads. As such, karma-benchmark popularity was classified as popular.
We found that karma-benchmark demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.