Socket
Socket
Sign inDemoInstall

convert-hrtime

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

convert-hrtime

Convert the result of `process.hrtime()` to seconds, milliseconds, nanoseconds


Version published
Weekly downloads
1.5M
decreased by-1.83%
Maintainers
1
Weekly downloads
 
Created

What is convert-hrtime?

The convert-hrtime npm package is designed to convert high-resolution time measurements, typically obtained using process.hrtime(), into various time units such as milliseconds, seconds, nanoseconds, etc. This is particularly useful for performance measurement in Node.js applications where precise timing is crucial.

What are convert-hrtime's main functionalities?

Convert to milliseconds

This feature allows the conversion of a high-resolution time to milliseconds. It is useful for logging or measuring execution time in milliseconds.

const convertHrtime = require('convert-hrtime');
const hrtime = process.hrtime();
const milliseconds = convertHrtime(hrtime).milliseconds;

Convert to seconds

This feature enables the conversion of a high-resolution time to seconds. It can be used when a broader time measurement is sufficient for the application's needs.

const convertHrtime = require('convert-hrtime');
const hrtime = process.hrtime();
const seconds = convertHrtime(hrtime).seconds;

Convert to nanoseconds

This feature provides the ability to convert high-resolution time to nanoseconds, offering the highest precision for performance measurement in critical applications.

const convertHrtime = require('convert-hrtime');
const hrtime = process.hrtime();
const nanoseconds = convertHrtime(hrtime).nanoseconds;

Other packages similar to convert-hrtime

Keywords

FAQs

Package last updated on 09 Apr 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc