
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
microseconds
Advanced tools
Generate and parse microseconds.
Uses hrtime in node.js, performance.now in browsers. Falls back to Date.now() * 1000.
const μs = require('microseconds')
timestamp in microseconds
const now = μs.now()
// 1404398280599786
as an object
const parsed = μs.parse(now)
// { microseconds: 786, milliseconds: 599, seconds: 0, minutes: 38, hours: 14, days: 16254 }
as a string
parsed.toString()
// "16254 days 14 hours 38 minutes 0 seconds 599 milliseconds 786 microseconds"
μs.parse(1000).toString()
// "1 millisecond"
μs.parse(1).toString()
// "1 microsecond"
μs.parse(4231002).toString()
// "4 seconds 231 milliseconds 2 microseconds"
const before = μs.now()
const time = μs.since(before) // time passed
Similar to `microseconds`, `nanotimer` offers high-resolution timers but focuses on nanosecond precision. It provides a different level of granularity and includes functionality for timeouts and intervals, which `microseconds` does not.
This package provides a function to get a timestamp with sub-millisecond precision, similar to `microseconds`. However, `performance-now` is more focused on compatibility with the performance.now() Web API, making it more suitable for cross-environment timing (Node.js and browsers).
FAQs
microsecond parser
The npm package microseconds receives a total of 1,638,084 weekly downloads. As such, microseconds popularity was classified as popular.
We found that microseconds 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.