Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
convert-hrtime
Advanced tools
Convert the result of `process.hrtime()` to seconds, milliseconds, nanoseconds
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.
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;
pretty-hrtime is a package that also focuses on converting high-resolution time measurements but emphasizes formatting the output into a more human-readable string. Unlike convert-hrtime, which provides numerical conversions, pretty-hrtime is more about readability for logging and display purposes.
time-convert offers conversion between various units of time (e.g., hours to minutes, minutes to seconds), including high-resolution time. It provides a broader range of time unit conversions compared to convert-hrtime, which is specifically focused on high-resolution time.
Convert the result of
process.hrtime()
to seconds, milliseconds, nanoseconds
$ npm install --save convert-hrtime
const convertHrtime = require('convert-hrtime');
convertHrtime(process.hrtime(process.hrtime()));
//=> {s: 0.000002399, ms: 0.002399, ns: 2399}
MIT © Sindre Sorhus
FAQs
Convert the result of `process.hrtime.bigint()` to seconds, milliseconds, nanoseconds
We found that convert-hrtime 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.