01 · Work
Five things worth your time.
Ninety-two public repositories, but these are the five that carry the argument: a browser
runtime, native modules people ship in production, a distributed system, and a devtool.
Counts come from the GitHub and npm APIs, read in August 2026.
Browser runtime · headliner
46stars in its first 10 days
An MIT-licensed WebContainer. Vite and Express running in your browser, with no server
doing the work.
“Node's APIs are synchronous. Browsers won't let you block on async work, except on a
Web Worker thread, where Atomics.wait() can genuinely park
execution.”
from the vivari README
maitrungduc1410/vivari
Native module · production trust
50,436installs / month
The video editor fifty thousand installs a month trust in production. When its FFmpeg
dependency was abandoned, I rebuilt the dependency itself: a community-maintained
ffmpeg-kit for Android, iOS and React Native, with support
for Android 15's 16 KB page size.
maitrungduc1410/react-native-video-trim
Native module · craft
36stars in ~8 weeks
Shared-element transitions on Fabric, router-agnostic, with interactive iOS gesture returns
synced frame-by-frame through the host navigator's transition coordinator. Every flight runs
in Swift and Kotlin, with no JS-thread animation.
The README carries a comparison table against the incumbent libraries, and a section headed
“When the alternatives are still a good fit”.
the case against my own library, on my own page
maitrungduc1410/react-native-shared-hero
Distributed systems
300kconcurrent connections
Socket.IO past the broker bottleneck: a mesh that trades N² connections for zero broker
hops. Benchmarked at 300,000 concurrent connections across ten Kubernetes pods, with
Prometheus metrics, a provisioned Grafana dashboard, and slow-consumer eviction under
backpressure.
maitrungduc1410/socket.io-mesh-adapter
Tooling · distribution
3browser stores
React DevTools for canvas apps: a scene-graph inspector, a draw profiler, and a render
heatmap showing which layers redraw most often. Shipped through the Chrome, Firefox and Edge
review processes.
maitrungduc1410/konva-inspector