Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
A fork of https://github.com/dominictarr/obv
Represents a value changing in time.
Sometimes you have a sequence of values over time, usually we use streams for this. However, in some cases, the latest value, or the next value matters more than the entire history of values.
For example, if you are drawing the mouse pointer, you just need the current position, not the historical positions.
An observable is a simple way to represent these instantaniously changing values.
returns an observable instance.
register listener
with the observable. immediate
is true by default.
listener
is called with the current value (if one has been set), set to false to disable.
A function remove
is returned, calling this function deregisters the listener.
set the current value of this observable. Any registered listeners will be called.
Like the above call to observable()
except the listener will only be triggered once.
This is useful for representing variables which must be set after an async operation (say, initializing a database connection), but if the value is initalized you can act on it immediately.
If you call observable.once(listener, false)
that triggers at the next
time the value is set, which so far I have used to create live streams.
The current value of the observable is provided as a property. I recommend not using null as a observable value in your program, because it makes testing the current value awkward.
MIT
FAQs
simple and lightweight observer
The npm package obz receives a total of 5 weekly downloads. As such, obz popularity was classified as not popular.
We found that obz demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.