Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/octoblu/node-simple-benchmark
Super simple benchmark tool
https://github.com/octoblu/node-simple-benchmark
Last synced: 10 days ago
JSON representation
Super simple benchmark tool
- Host: GitHub
- URL: https://github.com/octoblu/node-simple-benchmark
- Owner: octoblu
- License: mit
- Created: 2015-10-16T16:52:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T01:00:31.000Z (almost 3 years ago)
- Last Synced: 2024-11-28T19:17:21.865Z (about 1 month ago)
- Language: CoffeeScript
- Size: 16.6 KB
- Stars: 3
- Watchers: 10
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/octoblu/node-simple-benchmark.svg?branch=master)](https://travis-ci.org/octoblu/node-simple-benchmark)
[![Code Climate](https://codeclimate.com/github/octoblu/node-simple-benchmark/badges/gpa.svg)](https://codeclimate.com/github/octoblu/node-simple-benchmark)
[![Test Coverage](https://codeclimate.com/github/octoblu/node-simple-benchmark/badges/coverage.svg)](https://codeclimate.com/github/octoblu/node-simple-benchmark)
[![npm version](https://badge.fury.io/js/node-simple-benchmark.svg)](http://badge.fury.io/js/node-simple-benchmark)
[![Gitter](https://badges.gitter.im/octoblu/help.svg)](https://gitter.im/octoblu/help)Install
```
npm install simple-benchmark
```Example
```js
var SimpleBenchmark = require('simple-benchmark');benchmark = new SimpleBenchmark({label: 'something'});
benchmark.prettyPrint()setTimeout(function(){
benchmark.prettyPrint();
}, 2000);
```