
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.
Checkpoint Timer is a gem to provide a very lightweight Ruby stopwatch timer.
The impetus for this was some performance diagnostic work that I was doing. I wanted to see how long different method calls were taking, but wanted something more lightweight than Ruby's Benchmark library.
Add this line to your application's Gemfile:
gem 'checkpoint_timer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install checkpoint_timer
To use the timer, create an instance of the timer class.
timer = CheckpointTimer::Timer.new
timer.start
# ... execute code here
timer.checkpoint(logging: true, message: 'First checkpoint')
# ... execute some more code
timer.checkpoint(logging: true, message: 'Second checkpoint')
The timer can also be used without logging, if you wish to use the data differently
timer = CheckpointTimer::Timer.new
timer.start
# ... execute code here
elapsed_time = timer.checkpoint
The CheckpointTimer::Timer#checkpoint
method returns the elapsed time in seconds since the previous checkpoint.
Logging can also be enabled at the instance level.
timer = CheckpointTimer::Timer.new(log_all: true)
timer.start
# ... execute code here
elapsed_time = timer.checkpoint(message: 'Global logging is enabled')
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/checkpoint_timer. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that checkpoint_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.
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.