Socket
Socket
Sign inDemoInstall

debugging-timer

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    debugging-timer

Measure the execution time of multiple sections of your code, then effortlessly print all the timer results at once to the console.


Version published
Weekly downloads
12
decreased by-29.41%
Maintainers
1
Install size
4.76 kB
Created
Weekly downloads
 

Readme

Source

Debug Timer: benchmark the performance of multiple parts of your code

Measure the duration of multiple parts of your code, then effortlessly print all the timer results at once to the console.

What you get

Sample output:

Loading file: 506 ms
Processing data: 858 ms

How to get it

You will use three methods: timer.start('task name'), timer.end('task name'), and timer.print() to show the results in the console. The print() method also returns the results as string, so you can save it to some logs if you need.

const DebugTimer = require('debugging-timer');
let timer = new DebugTimer();

(async () => {
	timer.start('Loading file');
	// Let's pretend we are doing some work here:
	await delay(500);
	timer.end('Loading file');	

	timer.start('Processing data');
	await delay(850);
	timer.end('Processing data');
	
	// Let's see the results!
	timer.print();

	// Prints:
	// Loading file: 506 ms
	// Processing data: 858 ms
})();

async function delay(ms) {
	await new Promise(resolve => setTimeout(resolve, ms));
}

Questions and feedback

Welcome in the linked GitHub repository.

Keywords

FAQs

Last updated on 12 Jul 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc