Gathering detailed insights and metrics for perf-marks
Gathering detailed insights and metrics for perf-marks
Gathering detailed insights and metrics for perf-marks
Gathering detailed insights and metrics for perf-marks
graphemer
A JavaScript library that breaks strings into their individual user-perceived characters (including emojis!)
eslint-plugin-react-perf
Performance-minded React linting rules for ESLint
@udecode/plate-basic-marks
Basic marks plugin for Plate
perf-regexes
Optimized and powerful regexes for JavaScript
The isomorphic, simplest, and lightweight solution for User Timing API in Javascript - 🚀 only 208B 🚀. Tree-shaking and entry points built-in. Simple as that!
npm install perf-marks
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
36 Stars
177 Commits
2 Forks
3 Watching
6 Branches
3 Contributors
Updated on 24 Dec 2023
Minified
Minified + Gzipped
TypeScript (91.18%)
JavaScript (8.82%)
Cumulative downloads
Total Downloads
Last day
-2.1%
12,652
Compared to previous day
Last week
10.5%
70,174
Compared to previous week
Last month
5.4%
273,079
Compared to previous month
Last year
-7.9%
3,214,276
Compared to previous year
1
27
If you want to get more details about that, please read "Cross-platform performance measurements with User Timing API and perf-marks" blog post
That's the simplest and lightweight solution for User Timing API in Javascript. Simple how it should be.
You can find more details about it in the slides "User Timing API: because performance matters"
Please check our contributing.md to know more about setup and how to contribute.
Make sure that you are using the NodeJS version is the same as .nvmrc
file version. If you don't have this version please use a version manager such as nvm
or n
to manage your local nodejs versions.
Please make sure that you are using NodeJS version 6.10.2
Assuming that you are using nvm
, please run the commands inside this folder:
1$ nvm install $(cat .nvmrc); # install required nodejs version 2$ nvm use $(cat .nvmrc); # use nodejs version
In Windows, please install NodeJS using one of these options:
Via NVM Windows
package: Dowload via this link. After that, run the commands:
1$ nvm install $(cat .nvmrc); # install required nodejs version 2$ nvm use $(cat .nvmrc); # use nodejs version
Via Chocolatey:
1$ choco install nodejs.install -version 6.10.2
We use yarn
as our package manager instead of npm
Install it following these steps
After that, just navigate to your local repository and run
1$ yarn install
Try out our demo on Stackblitz!
1$ yarn test # run the tests
1$ yarn build # run the tests
1$ yarn bundlesize # run the tests
1$ yarn lint # run the tests
PerfMarks
This service exposes a few different methods with which you can interact with feature toggle service.
PerfMarks.start(markName)
Adds the user timing api marker instrumentation in your application.
1import * as PerfMarks from 'perf-marks'; 2 3... 4PerfMarks.start('name-of-your-mark'); 5...
PerfMarks.end(markName, markNameToCompare)
Returns the results for the specified marker.
PerfMarks.end(markName)
callsPerfMarks.clear(markName)
after return the mark values
If markNameToCompare
value is not passed, the package will create a mark using markName + '-end'
. Otherwise, it will compare based on the given mark.
If you're passing
markNameToCompare
value, please make sure you're also started the mark with the same name previously
1import * as PerfMarks from 'perf-marks'; 2 3... 4PerfMarks.start('name-of-your-mark'); 5... 6const markResults: PerfMarks.PerfMarksPerformanceEntry = PerfMarks.end('name-of-your-mark');
PerfMarks.clear(markName)
Removes the specified marker
1import * as PerfMarks from 'perf-marks'; 2 3... 4PerfMarks.start('name-of-your-mark'); 5... 6PerfMarks.clear('name-of-your-mark'); 7...
PerfMarks.clearAll()
Removes all the markers
1import * as PerfMarks from 'perf-marks'; 2 3... 4PerfMarks.start('name-of-your-mark'); 5PerfMarks.start('another-name-of-your-mark'); 6... 7PerfMarks.clearAll(); 8...
PerfMarks.getNavigationMarker()
Gets the marks for navigation
loaded
1import * as PerfMarks from 'perf-marks'; 2 3... 4const markResults: PerfMarksPerformanceNavigationTiming = PerfMarks.getNavigationMarker(); 5...
PerfMarks.getEntriesByType(markName)
Gets the result for all marks that matches with the given mark name
1import * as PerfMarks from 'perf-marks';
2
3...
4PerfMarks.start('name-of-your-mark');
5PerfMarks.start('another-name-of-your-mark');
6...
7// It will return results for all the marks that matches with `name-of-your-mark`
8// In this case, `name-of-your-mark` and `another-name-of-your-mark`
9const markResult: PerfMarksPerformanceNavigationTiming[] = PerfMarks.getEntriesByType('name-of-your-mark');
10...
PerfMarks.isUserTimingAPISupported
Boolean with the result of the check if User Timing API is supported for the current browser/NodeJS version.
PerfMarks
already have a fallback in case user timing is not supported. This boolean is exposed in case the app needs to check the case to use any other mechanism.
1import * as PerfMarks from 'perf-marks'; 2 3... 4if (PerfMarks.isUserTimingAPISupported) { 5 // ... Do something 6} 7...
PerfMarks.isPerformanceObservableSupported
Boolean with the result of the check if PerformanceObservable is supported for the current browser/NodeJS version.
PerfMarks
does not provide a fallback ifPerformanceObservable
is not supported. This boolean is exposed in case the app needs to check the case to use any other mechanism.
1import * as PerfMarks from 'perf-marks'; 2 3... 4// Checking if `PerformanceObservable` is supported for the current browser/NodeJS version 5if (PerfMarks.isPerformanceObservableSupported) { 6 try { 7 // If yes, start the PerformanceObserver 8 const observer: PerformanceObserver = new PerformanceObserver(list => { 9 // ... Do something 10 }); 11 12 // register observer based on the entryTypes 13 // E.G. for long task notifications 14 observer.observe({ entryTypes: ['longtask'] }); 15 } catch (e) {} 16 // ... Finishing the observer 17 observer.disconnect(); 18} 19...
PerfMarks.profiler()
Runs profiler using User Timing Api method to get user timing information. It will return a Promise with mark
key with a PerfMarksPerformanceEntry
type OR mark
key + data
key with the content for the callback method If the given callback returns something.
1const methodToBeMeasured = () => { 2 /** method content */ 3}; 4// `res` will contain `mark` with the information and `data` 5// if `methodToBeMeasured` returns something 6const { mark, data } = PerfMarks.profiler(methodToBeMeasured, 'name-of-the-mark-for-this-method');
These are entrypoints for specific components to be used carefully by the consumers. If you're using one of these entrypoints we are assuming you know what you are doing. So it means that code-splitting and tree-shaking should be done on the consumer/product side.
By definition it will use CJS as the main distribution entrypoint used in the app. However, this can be changed in the consumer's bundle step. This is the built-in scenario if the consumer uses toolings such as Webpack
, Rollup
, or Parcel
.
perf-marks/marks
: it has all the methods for marks
start
: Frontend and Backend supportend
: Frontend and Backend supportclear
: Frontend and Backend supportclearAll
: Frontend and Backend supportisUserTimingAPISupported
: Deprecated (will be removed in v2). Use the value imported from perf-marks/utils
instead. Frontend and Backend supportisPerformanceObservableSupported
: Deprecated (will be removed in v2). Use the value imported from perf-marks/utils
instead. Frontend and Backend supportperf-marks/entries
: it has all the methods to get entries
getNavigationMarker
: Frontend support onlygetEntriesByType
: frontend support onlyperf-marks/utils
: it has all the feature, and platform checks and validations
isNodeJSEnv
: Frontend and Backend support. Boolean with the result of the check if package is running on the browser or in a NodeJS environmentisPerformanceObservableSupported
: Frontend and Backend support. Boolean with the result of the check if PerformanceObservable
is supported for the current browser/NodeJS versionisUserTimingAPISupported
: Frontend and Backend support. Boolean with the result of the check if User Timing API is supported for the current browser/NodeJS versionperf-marks/profiler
: it has all the feature, and platform checks and validations
profiler
: Frontend and Backend support. profiler using User Timing Api method. It will return a Promise with mark
key with a PerfMarksPerformanceEntry
type or mark
key + data
key with the content for the callback method If the given callback returns something.If you need optimize your bundle size even more, this package provides different bundles for CommonJS
, UMD
, ESM
, ES2015
and ES2020
. To make the dev experience smoothiest as possible, you can use babel-plugin-transform-imports
in your app and configure the bundle that fits the most for your app!
Also, please make sure you configured your module bundler to support these optimized bundles based on your development loop. For Webpack, please check https://webpack.js.org/configuration/resolve/#resolvemainfields for more details or look for the module bundler documentation you're currently using.
1yarn add -D babel-plugin-transform-imports 2# or 3npm install --save-dev babel-plugin-transform-imports
Create a .babelrc.js
file in the root directory of your project:
1const plugins = [ 2 [ 3 'babel-plugin-transform-imports', 4 { 5 'perf-marks/perf-marks': { 6 // Use "transform: 'perf-marks/perf-marks/${member}'," if your bundler does not support ES modules 7 transform: 'perf-marks/dist/esm/${member}', 8 preventFullImport: true, 9 }, 10 'perf-marks/entries': { 11 // Use "transform: 'perf-marks/entries/${member}'," if your bundler does not support ES modules 12 transform: 'perf-marks/entries/esm/${member}', 13 preventFullImport: true, 14 }, 15 }, 16 ], 17]; 18 19module.exports = { plugins };
Or just use it via babel-plugin-import
1yarn add -D babel-plugin-import 2# or 3npm install --save-dev babel-plugin-import
Create a .babelrc.js
file in the root directory of your project:
1const plugins = [ 2 [ 3 'babel-plugin-import', 4 { 5 libraryName: 'perf-marks/entries', 6 // Use "'libraryDirectory': ''," if your bundler does not support ES modules 7 libraryDirectory: 'esm', 8 camel2DashComponentName: false, 9 }, 10 'entries', 11 ], 12]; 13 14module.exports = { plugins };
And enjoy! Yeah, it's simple like that 😉
this project is using np
package to publish, which makes things straightforward. EX: np <patch|minor|major>
For more details, please check np package on npmjs.com
Wilson Mendes (willmendesneto)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 4/26 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
41 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More