
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
observables-with-streams
Advanced tools
A library for observables built with WHATWG streams. This library is inspired by ReactiveX’s operators and implements a subset of them using streams.
npm install --save observables-with-streams
The goal of this library is to implement observables making as much use of the platform as possible and being highly tree-shakeable.
<!DOCTYPE html>
<button id="dec">-</button>
<span id="counter">0</span>
<button id="inc">+</button>
<script type="module">
import * as ows from "observables-with-streams";
ows.merge(
ows.fromEvent(
document.querySelector("#dec")
"click"
).pipeThrough(ows.map(() => -1)),
ows.fromEvent(
document.querySelector("#inc")
"click"
).pipeThrough(ows.map(() => 1))
)
.pipeThrough(
ows.scan((v0, v1) => v0 + v1, 0)
)
.pipeTo(
ows.subscribe(
v => document.querySelector("#counter").textContent = v
)
);
</script>
The (somewhat lacking) documentation for this library is hosted at https://observables-with-streams.surma.technology
While most browsers have partial support of streams in stable, this library makes heavy use of TransformStreams, which are currently not well supported. Until browsers catch up, I can recommend Mattias Buelens' web-streams-polyfill.
For a good primer about streams, read this blog post by Jake Archibald (he is aware the title hasn’t aged well).
License Apache 2.0
FAQs
A library of observables built with streams
We found that observables-with-streams 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.