frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Q3Edit – Edit and play Quake 3 maps in the browser

https://q3edit.com
47•drdator•6h ago•11 comments

Show HN: SDF Pelicans on Bicycle

https://pelican.vibe-overflow.com/index.html
2•AzatJ•2h ago•0 comments

Show HN: IKEA Complexity Index

https://ikea.greg.technology/
137•gregsadetsky•17h ago•77 comments

Show HN: Peek-CLI: Let Claude Code iterate on front end designs

https://github.com/puffinsoft/peek-cli
2•G3819•2h ago•0 comments

Show HN: Watch bots interact with an SSH honeypot in real time

https://honeypotlive.cc/
171•tusksm•1d ago•59 comments

Show HN: ride-recap, teaching a LLM my taste to automate cycling highlights

https://www.iandmacomber.com/blog/gopro-garmin-gemini-ride-recap/
5•iandmacomber•8h ago•1 comments

Show HN: Japan and Korea Parliament Members Archive

https://eastasiainsights.com/
5•cksmct•6h ago•0 comments

Show HN: A zoomable timeline of 4M Wikipedia events

https://app.everything.diena.co/
108•lortex•1d ago•39 comments

Show HN: iMessage is the best interface, so I built TypeScript SDK for it

https://github.com/jmisilo/imessage-sdk
3•misilojakub•7h ago•0 comments

Show HN: Clx – Compile Lua to Native Executables Through C++20

https://github.com/samyeyo/clx
142•_samt_•1w ago•32 comments

Show HN: I Didn't Write a Single Line of My Framework Code

https://no-js.dev/
3•ErickXavier•8h ago•1 comments

Show HN: Instrumation a PYPI library for Instruments

https://github.com/abduznik/instrumation
10•abduznik•6d ago•1 comments

Show HN: Simulator for a custom 8-bit discreet logic computer

https://msap2.mehran.dk
26•mehrant•4d ago•5 comments

Show HN: Leaves – A text-UI disk usage treemap visualizer

https://github.com/patonw/leaves
90•patonw•2d ago•29 comments

Show HN: Qwen3.6-35B-A3B on a 16 GB M1 Pro with SSD-streamed MoE

https://github.com/andreaborio/ds4
15•andreaborio•22h ago•1 comments

Show HN: Mojibake – A low-level Unicode library written in C

https://mojibake.zaerl.com/
76•program•1d ago•22 comments

Show HN: Firefox in WebAssembly

https://developer.puter.com/labs/firefox-wasm/
267•coolelectronics•3d ago•126 comments

Show HN: ShellStack – Interactive cybersecurity learning platform with 280 tool

https://github.com/shlokkokk/ShellStack
2•shlokkshahh•12h ago•0 comments

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
164•nonadhocproblem•3d ago•49 comments

Show HN: Loris Tunnel – an open-source desktop manager for SSH tunnels

https://github.com/RangerWolf/loris-tunnel-app
2•rangerwolf•12h ago•1 comments

Show HN: Get alerts for good seats at 70mm IMAX showings of The Odyssey

https://imaxxing.io/
29•andrewtorkbaker•3h ago•41 comments

Show HN: Randomly Generated ASCII Trees

https://gist.githubusercontent.com/Soham-Saha/f6e8d25327ee86b915c53ac73e4eb7b3/raw/aeba99ece14c90...
2•omegacombinator•5h ago•0 comments

Show HN: Be the ChatBOT

https://bethechatbot.com/
53•keito•2d ago•26 comments

Show HN: I've built a words game based on binary search

https://hilogame.cc/
49•ludovicianul•2d ago•66 comments

Show HN: BambooGrid – Open-source web UI for power grid modeling and power flow

https://bamboo.kickstage.com
37•soaringmonchi•2d ago•13 comments

Show HN: Clawk – Give coding agents a disposable Linux VM, not your laptop

https://github.com/clawkwork/clawk
225•celrenheit•5d ago•157 comments

Show HN: Libretto PR agents – Automatically fix failing playwright scripts

https://libretto.sh/debug-agents
21•muchael•2d ago•4 comments

Show HN: A modern port of Linux to a ten-year-old QWERTY phone

46•tmzt•2d ago•14 comments

Show HN: One More Letter

https://playonemoreletter.com/
88•hmate9•2d ago•58 comments

Show HN: Opening lines of famous literary works

https://www.verbaprima.com/
178•plicerin•4d ago•104 comments
Open in hackernews

Show HN: Solidis – Tiny TS Redis client, no deps, for serverless

https://github.com/vcms-io/solidis
71•jayl-e-e•1y ago
Hey everyone!

Over the past two years I threw myself back into full-time engineering with a simple goal: write code that gives back to the community. After a lot of late-night FOMO (“AI will do it all for us, right?”) and some painful production incidents, I finally turned my weekend project into an open-source library.

[ What is Solidis? ]

- Super-light (< 30 KB) RESP2/RESP3 client with zero runtime deps and first-class ESM/CJS support.

- Fully tree-shakable – import only the commands you need.

- Written with SOLID principles & full TypeScript typings for every command.

- Designed for cold-start sensitive serverless platforms (small bundle + tiny memory footprint).

[ Why I built it ]

1. node-redis & ioredis pain

- ESM is still an after-thought.

- Hidden deadlocks on RST, vague error surfaces.

- Everything gets bundled, even commands you’ll never call.

2. I refuse to add a dependency I don’t fully understand – I literally read candidates 10× before `npm i`.

3. Serverless bills love to remind me that every KB and millisecond matters.

[ Key features ]

- Protocols: RESP2 and RESP3 (auto-negotiation)

- Bundle size: `<30 KB` (core) / `<105 KB` (full)

- Dependencies: 0

- Extensibility: Drop-in command plugins, custom transactions

- Reliability: Auto-reconnect, per-command timeouts, type-checked replies

[ Roadmap / Help wanted ]

- Benchmarks against `node-redis` & `ioredis` (PRs welcome!)

- More first-class Valkey love

- Fuzz-testing the parser

- Docs site – the README came first; I’d love help polishing full docs

This might be my last big OSS push for a while, so stars, issues, and PRs mean the world.

If Solidis saves you some cold-start time or just scratches a TypeScript itch, let me know!

Repo: https://github.com/vcms-io/solidis

License: MIT

Thanks for reading, and happy hacking!

(Feel free to AMA in the comments – I’m around.)

Comments

badmonster•1y ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•1y ago
Solidis isn’t necessarily aiming to outperform ioredis or node-redis in every way — its primary goal is to reduce bundle size rather than maximize raw performance. That said, it does offer some performance advantages in practice. Solidis is designed to handle pipelined commands more efficiently within a single event loop iteration and parses responses in a more event-loop-friendly manner.

As a result, in most real-world scenarios, Solidis tends to be about 2–3x faster than ioredis (even with auto-pipelining enabled). Compared to node-redis, the performance is generally on par or slightly behind.

One caveat: if the payloads being parsed are very large, Solidis can experience increased latency due to its parser being more CPU-intensive, which may introduce delays compared to other stacks.

swaptr•1y ago
Looks great! I tried plugging it into my setup that uses ioredis, but it doesn't seem to support loading the URI directly?
jayl-e-e•1y ago
Thank you very much. As you mentioned, connecting via URI is not currently supported, but it’s not difficult to implement, so I will consider adding it to the specification.
jayl-e-e•1y ago
Improvement deployed!
swaptr•1y ago
Thanks, really appreciate the quick resolution. Looks like a really cool project and the goals seem to be well defined. All the best.
jayl-e-e•1y ago
It's my pleasure! :)
jayl-e-e•1y ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?