![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@eeskov/performance-tracker
Advanced tools
This package provides a simple and efficient way to track and measure the performance of your JavaScript/TypeScript code. It helps to identify bottlenecks in your code and allows you to measure the time difference between different sections of your code. The PerformanceTracker class is designed to be easily integrated into any project.
npm install @eeskov/performance-tracker
or
yarn add @eeskov/performance-tracker
import {PerformanceTracker} from '@eeskov/performance-tracker';
const tracker = PerformanceTracker.getInstance();
tracker.track('START');
for (let i = 0; i < 5; i++) {
tracker.track('START_LOOP');
if (i === 3) {
await new Promise((resolve) => setTimeout(resolve, 1000));
}
tracker.track('END_LOOP');
}
tracker.track('END');
console.log(tracker.getDiffAll()); // Logs the time differences between all tracked markers
console.log(tracker.getDiff('START', 'END')); // Logs the time difference between 'start' and 'middle' markers
/*
{
message: 'START -> END 1016.58 ms',
label1: 'START',
label2: 'END',
diff: '1016.58'
}
*/
console.log(
tracker.getDiffBetween(
{
label: 'START_LOOP',
trackType: 'first',
},
'END_LOOP',
),
); // Logs all the time differences between START_LOOP and END_LOPP tracked markers
PerformanceTracker.getInstance(clean = false, isDisabled = false)
: Returns the singleton instance of the PerformanceTracker
track(marker: string)
: Adds a new marker with the specified label
getDiffAll()
: Returns an array of TrackedEvent objects or a string if the performance tracker is disabled
getDiff(label1: string | LabelDiff, label2: string | LabelDiff)
: Returns a TrackedEvent object representing the time difference between two markers
getDiffBetween(label1: string | LabelDiff, label2: string | LabelDiff)
: Returns an array of TrackedEvent objects representing the time differences between two markers
flush()
: Resets the stored timestamps and markers
getLabels()
: Returns an array of marker labels
setFormatter(formatterFunc: PerfomanceLoggerFormatter)
: Sets a custom formatter function for the output
Contributions are welcome! Please feel free to submit issues or pull requests to improve the package.
This package is released under the MIT License.
FAQs
JS performance tracker
The npm package @eeskov/performance-tracker receives a total of 3 weekly downloads. As such, @eeskov/performance-tracker popularity was classified as not popular.
We found that @eeskov/performance-tracker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.