
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@aptoma/timer
Advanced tools
A module for timing events. Relies on process.hrtime().
npm install --save @aptoma/timer
var timer = require('@aptoma/timer');
var elapsed = timer('MyTimer');
// do stuff
console.log(elapsed());
// { name: 'MyEvent',
// summary: 'MyEvent: 11495.606ms',
// msec: 11495.605854,
// hrtime: [11, 495605854]
// }
Under the hood, timer() simply records the current hrtime, and then calculates the diff whenever elapsed() is called.
The name you pass to timer() can be any valid string, and will be used in the name and summary fields of the return value of elapsed().
The name does not have to be unique, you can create as many timers as you like with the same name.
elapsed() does not stop the timer, it can be called multiple times to track various offsets from the start time.
FAQs
A module for creating timers
The npm package @aptoma/timer receives a total of 12 weekly downloads. As such, @aptoma/timer popularity was classified as not popular.
We found that @aptoma/timer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.