
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
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
We found that obv 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.