
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Based off of functional reactive programming, oscillo gives you a signal that represents a value changing over time. You can manipulate signals and combine them together in various ways.
Add this line to your application's Gemfile:
gem 'oscillo'
And then execute:
$ bundle
Or install it yourself as:
$ gem install oscillo
Creating a signal is as simple as
s = Oscillo::Signal.new
You modify the value of the signal with s << :value
and you get the current
value of the signal with s.value
, or s.val
if you want to save a couple of
letters.
If you want to give a signal a starting value, you just pass it to the constructor.
s = Oscillo::Signal.new(0)
If you pass another signal as an argument to new
, the signal's value will
follow the other one.
a = Oscillo::Signal.new
b = Oscillo::Signal.new(a)
a << :value
b.val #=> :value
You can pass a block to new
to modify how the new signal follows the old.
a = Oscillo::Signal.new(0)
b = Oscillo::Signal.new(a) { |v| v * 2 }
a << 3
b.val #=> 6
You can also follow multiple signals at once. The new signal will change if any of the signal that you follow changes.
a = Oscillo::Signal.new(0)
b = Oscillo::Signal.new(0)
c = Oscillo::Signal.new(a, b) { |v1, v2| v1 + v2 }
a << 2
c.val #=> 2
b << 3
c.val #=> 5
The last argument given to the block passed to new is the signal itself. This is so you utilize other methods to query the signal and modify it's changed value.
{Oscillo::Signal#abort} aborts the new value change, keeping the old one.
a = Oscillo::Signal.new
b = Oscillo::Signal.new(a) { |v, s| s.abort if v == :bad; v }
a << :good
b.val #=> :good
a << :bad
b.val #=> :bad
{Oscillo::Signal#source} gives the original signal that caused the cascade of changes. This is useful if you are following multiple signals and want to know which one actually changed.
a = Oscillo::Signal.new
b = Oscillo::Signal.new
c = Oscillo::Signal.new(a, b) do |v1, v2, s|
"The last change was to #{s.source.val}"
end
a << 1
c.val #=> "The last change was to 1"
b << 2
c.val #=> "The last change was to 2"
You can combine signals together in different ways. For example, {Oscillo::Combine.either} updates the new signal to the value of whichever was the last signal to change.
a = Oscillo::Signal.new
b = Oscillo::Signal.new
c = Oscillo::Combine.either(a, b)
a << "a changed"
c.val #=> "a changed"
b << "b changed"
c.val #=> "b changed"
See {Oscillo::Combine} for all combination methods.
A signal can thought of a sequence of values over time. Therefore, {Oscillo::Signal} implements a large number of Enumerable's methods. For example,
a = Oscillo::Signal.new(0)
b = a.map { |v| v ** 2 }
a << 3
b.val #=> 9
See {Oscillo::Enumerable} for all the methods implemented.
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that oscillo 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.