D++
dariomannu.bsky.social
D++
@dariomannu.bsky.social
Reposted by D++
My first advice to junior contributors is to STOP using vibe coding for PRs. OSS is always about people more than about code. We don't need more code generated by LLM, we need more people who care.
November 10, 2025 at 11:47 AM
Need the TypeScript team to improve variadic tuples...
November 1, 2025 at 9:24 PM
Reposted by D++
Challenge Accepted: WebStreams + WebSockets, No Libs
s.tritarget.org/q
October 29, 2025 at 4:15 AM
I moved your code to Stackblitz, so it feels a bit more organised across files: stackblitz.com/edit/simples...

Feel free to clone it under your account, in case
A Minimalistic Chatroom App (web streams) - StackBlitz
an Alternative take on the minimalistic chat room app by sukima
stackblitz.com
October 29, 2025 at 5:14 PM
So at this point, the real difference isn’t just about libraries, but about paradigms. Your approach is still mostly imperative, while what we’re pioneering is the Stream-Oriented paradigm, aiming to elevate the overall architecture and clarity of applications, not just the tools used to build them.
October 29, 2025 at 5:14 PM
In your example, you’ve essentially built your own mini streams library: you defined inputStream, messageSink, and wired everything up manually. If you extracted those functions out, you’d already have the foundation of a proper library. With some refinement, it could actually become quite elegant.
October 29, 2025 at 5:14 PM
That said, since there isn’t really a high-level library for Web Streams comparable to what RxJS is for Observables, it’s a bit like comparing apples to oranges. The fair comparison would be either native Observables vs Web Streams, or RxJS vs a hypothetical Web Streams-based library.
October 29, 2025 at 5:14 PM
Very interesting perspective. I’m almost tempted to build a small reactive streams library (something RxJS-like) using Web Streams now.
October 29, 2025 at 5:14 PM