1.0.7 • Published 6 years ago

webpack-js-evaluation-marks v1.0.7

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
6 years ago

JS Evaluation Marks Webpack Plugin

Adds performance.marks at the beginning and end of webpack bundles to measure JS evaluation time

Getting started

npm install webpack-js-evaluation-marks --save
new JSEvaluationMarksPlugin({
  namePrefix: 'js_evaluation_',
})
const measures = window.performance.getEntriesByType('measure');
const measure = measures.find(m => m.name === `js_evaluation_${bundleName}`);
1.0.7

6 years ago

1.0.2

6 years ago