frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Immersive Gaussian Splat tour of grace cathedral, San Francisco

https://vincentwoo.com/3d/grace_cathedral/
27•akanet•2h ago•3 comments

Show HN: OTP Inspired actor supervisor based full stack templates

https://shipstacks.tech
4•annrap1d•9h ago•1 comments

Show HN: CheapStack – affordable dev starter kits and boilerplates

https://cheapstack.dev
2•makbar890•1h ago•0 comments

Show HN: Wheesper – Start an anonymous discussion with a link

https://wheesper.com/
30•whatdoyouthink2•7h ago•22 comments

Show HN: I replaced a $120k bowling center system with $1,600 in ESP32s

2816•section33•1d ago•332 comments

Show HN: Linguin, a live multilingual dictionary for 120 languages

https://linguin.xyz/
3•astroscout•2h ago•0 comments

Show HN: GPU Accelerated Desktop Screen Flash Filter (Photosensitive Epilepsy)

https://flashfilter.app/
6•flashfilter•5h ago•2 comments

Show HN: cbxy – A format for creating guided comic book experiences

https://github.com/ngafar/cbxy
5•nawazgafar•4h ago•3 comments

Show HN: A Pipeline for Making 10-minute AI Movies with Claude Code and Seedance

https://github.com/dawndrain/movie-gen
12•dawndrain•9h ago•2 comments

Show HN: I built claw-coder which is the first atonomous local AI agent

3•GabrielBlessed•4h ago•2 comments

Show HN: Waylandar – a Wayland calendar widget, syncs Google Calendar and more

https://github.com/samjoshuadud/waylandar
2•samjoshuadud•4h ago•1 comments

Show HN: Gather every memory in one beautiful place

https://theirshoebox.com
2•not_wowinter13•4h ago•1 comments

Show HN: Neuron. Turn a SQL query history into a semantic layer

https://www.momentaanalytics.com/free-trial
2•sandrewsmomenta•4h ago•0 comments

Show HN: Sharper – an AI office agent grounded in your knowledge, with citations

https://sharper-ai.co
3•zhiheng_huang•5h ago•0 comments

Show HN: Roll Solver – daily multiplayer word puzzle PWA

https://rollsolver.com
3•peterbr•5h ago•0 comments

Show HN: Framesmith 1.9 – charts as a node type for AI-designed UIs

https://github.com/vicmaster/framesmith
2•vicvelazquez•5h ago•0 comments

Show HN: A free lever-based puzzle game

https://lvl.materwelon.dev/
2•materwelon•5h ago•0 comments

Show HN: Crate – Wireless music manager for Android phones (open source)

https://github.com/ivancernja/crate
5•andout_•5h ago•0 comments

Show HN: Wordpeek

https://wordpeek.app
3•furyofantares•5h ago•2 comments

Show HN: Codeground – run and share code in the browser

https://codeground.ai/
3•aashhuttossh•5h ago•1 comments

Show HN: Twelve FREE daily logic puzzles (browser with PWA)

https://dailygrid.app/games/
2•zactyz•5h ago•1 comments

Show HN: Whetuu – a zero-config cross-shell prompt written in Zig

https://github.com/yamafaktory/whetuu
3•yamafaktory•6h ago•1 comments

Show HN: Geozee Daily Geography Puzzle

https://geozee.earth/
2•Ciaranio•6h ago•0 comments

Show HN: Amnesia – audit Claude Code's memory for contradictions

https://github.com/tiny-cloud-ventures/amnesia
4•suttles•6h ago•0 comments

Show HN: Effort Router: Intelligent /effort selection per Claude turn

https://github.com/cfitzgerald-pd/effort-router
4•bennydog224•6h ago•1 comments

Show HN: Take a break, play some puzzles

https://gridmino.com/
3•marko-projects•6h ago•0 comments

Show HN: Dedupe Tabs Pro – Chromium Based Browser Extension

https://iam.mt/dedupe-tabs-pro/
2•thallavajhula•7h ago•0 comments

Show HN: A Chrome extension that adds an AI side panel to LeetCode problems

https://leetcopilot.dev
2•alexwang24•7h ago•0 comments

Show HN: Newsline – one-line news in your status line while your AI agent works

https://github.com/itdar/newsline
4•thesockerr•7h ago•2 comments

Show HN: I built a WASM-based spreadsheet engine that's pretty fast

https://podraven.github.io/titan-engine/
2•deathg0d•7h ago•0 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?