Measure the performance of an function easily
This is a Node.js module available through the
npm registry. It can be installed using the
npm
or
yarn
command line tools.
npm install function-perf --save
import { Measure } from 'function-perf';
class Example {
@Measure({ asyncFunction: true })
async asyncFunctionToMeasure() {
// ...
}
@Measure()
functionToMeasure() {
// ...
}
}
run demo.ts
to complete usage
npm install
npm test
None
- @types/node: TypeScript definitions for Node.js
MIT