
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Universal timer for Node.js and browser:
import createTimer from 'unitimer'
const timer = createTimer().start()
setTimeout(() => {
const ms = timer.stop() // ms ~= 1000.0
timer.log() // output to console
}, 1000)
Multiple timers:
import createTimer from 'unitimer'
const [a, b] = createTimer(['a', 'b'])
a.start()
b.start()
// ...
timer.start()
Begin measuring interval.
timer.stop()
End the interval. Returns the elapsed time in milliseconds.
Note: start()
and stop()
can be called multiple times (which affects the total time, count, mean etc.).
timer.took()
Returns the most recent start / stop interval in milliseconds.
timer.mean()
Returns arithmetic average in milliseconds.
timer.total()
Returns the total time taken (an addition of start
/ stop
intervals)
timer.count()
Returns the number of intervals measured.
timer.min()
Returns the minimum interval time recorded.
timer.max()
Returns the maximum interval time recorded.
timer.info(precision)
Returns a string summary of timer total, mean, total, min and max. precision
is number of decimal places to show (optional).
timer.log(precision)
console.log
of timer.info()
(see above)
timer.stats()
Returns a stats object.
FAQs
Universal timer (Node.js and browser)
The npm package unitimer receives a total of 22 weekly downloads. As such, unitimer popularity was classified as not popular.
We found that unitimer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.