perf-marks
Advanced tools
Changelog
[1.14.2][] - 2021-04-11
README.md
perf-marks/marks
entry-point 🎉Changelog
[1.14.1][] - 2021-02-12
jest.config.js
Changelog
[1.14.0][] - 2020-09-30
end()
: Adding built-in mark to compare if the application is not passing the values. This will give us all the required information for the consumers.Without passing a mark to compare
import * as PerfMarks from 'perf-marks';
...
PerfMarks.start('name-of-your-mark');
...
const markResults: PerfMarks.PerfMarksPerformanceEntry = PerfMarks.end('name-of-your-mark');
Passing a mark to compare
import * as PerfMarks from 'perf-marks';
...
PerfMarks.start('name-of-your-mark');
PerfMarks.start('name-of-your-mark-to-be-compared-with');
...
const markResults: PerfMarks.PerfMarksPerformanceEntry = PerfMarks.end(
'name-of-your-mark',
'name-of-your-mark-to-be-compared-with'
);
Changelog
[1.13.4][] - 2020-08-21
Changelog
[1.13.3][] - 2020-08-21
depcheck
packagemodule
and module.require
are available globally before confirm the package is running in a NodeJS environment.Changelog
[1.13.2][] - 2020-08-01
end()
methodChangelog
[1.13.1][] - 2020-08-01
perf-marks/entries
entry pointperf-marks/marks
entry pointperf-marks/profiler
entry pointperf-marks/utils
entry pointChangelog
[1.13.0][] - 2020-08-01
ES2020
bundle on published content. Now the package supports CommonJS
, UMD
, ESM
, ES2015
and ES2020
📦Changelog
[1.12.2][] - 2020-08-01