Socket
Socket
Sign inDemoInstall

benchmarked

Package Overview
Dependencies
66
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    benchmarked

Easily generate benchmarks from a glob of files.


Version published
Weekly downloads
1.4K
increased by50.55%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

benchmarked NPM version Build Status

Easily generate benchmarks from a glob of files.

This is an opinionated wrapper for benchmarked.js to make it easier to do benchmarks. Concept is from remarkable

Install with npm

npm i benchmarked --save-dev

Usage

var Suite = require('benchmarked');
var suite = new Suite({
  cwd: 'benchmark', // optionally define a current working directory
  add: 'my-functions/*.js', // path or glob pattern to functions
  fixtures: 'my-fixtures/*.txt'  // path or glob pattern to fixtures
});

// run the benchmarks
suite.run();

See the examples to get a better understanding of how this works.

Alternative setup

Add functions to run:

suite.add('benchmark/my-functions/*.js');

Add fixtures to use:

suite.fixtures('benchmark/my-fixtures/*.txt');

Run benchmarks for each fixture and function defined:

suite.run();

Pass additional arguments beyond the content in the fixtures:

// `fixture` is the content returned for each fixture
suite.run(function (fixture) {
  // this array will be applied as arguments to each function
  return [fixture, ':'];
});

Options

options.cwd

Specify a current working directory to be used for both fixtures and functions:

var suite = new Suite({cwd: 'example'});

options.name

Pass a custom naming function to be used on functions. This only changes the name that displays in the command line for each function:

var path = require('path');

var suite = new Suite({
  // this is the actual default
  name: function(filepath) {
    return path.basename(filepath);
  }
});

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Running tests

Install dev dependencies.

npm i -d && npm test

Author

Jon Schlinkert

License

Copyright (c) 2014-2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb-cli on March 25, 2015.

Keywords

FAQs

Last updated on 25 Mar 2015

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc