frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: 500 years of Joseon court omens as an observability dashboard

https://ajin.im/is/building/omen.ops/
50•poppypetalmask•2h ago•3 comments

Show HN: Helios – what plug-in solar could generate for any address in Britain

https://helios.southlondonscientific.com/
101•ruaraidh•10h ago•36 comments

Show HN: React-Rewrite – A visual editor for React that writes code, no LLM

https://github.com/donghaxkim/react-rewrite
2•donghaxkim•2h ago•0 comments

Show HN: leaf – one month later: website, releases and lots of improvements

https://leaf.rivolink.mg
2•RivoLink•2h ago•0 comments

Show HN: Tiny-vLLM – high performance LLM inference engine in C++ and CUDA

https://github.com/jmaczan/tiny-vllm
181•yu3zhou4•1d ago•16 comments

Show HN: Open-source private home security camera system (end-to-end encryption)

https://github.com/secluso/core
108•arrdalan•23h ago•23 comments

Show HN: TV Explorer. Adding advanced UI to free online TV

https://tvexplorer.live
171•dtagames•1d ago•52 comments

Show HN: Zot – Yet another coding agent harness

https://www.zot.sh
94•patriceckhart•1d ago•78 comments

Show HN: UN Condemnation Statistics

https://boxed.github.io/UN-condemns/
3•boxed•4h ago•0 comments

Show HN: Community Ninja – Find customers searching for your product

https://communityninja.ai/
2•shashanoid•4h ago•1 comments

Show HN: Ego lite – why our browser agent writes JavaScript not CLI commands

https://github.com/CitroLabs/ego-lite
9•Nicole9•5h ago•7 comments

Show HN: I built an Android OS in the browser

https://mobilegym.dev/
19•haozaz•15h ago•0 comments

Show HN: Jynx, a matchmaking app to find gaming teammates

https://jynx.app/
4•akiro____•7h ago•4 comments

Show HN: Ktx – Open-source executable context layer for data agents

https://github.com/Kaelio/ktx
84•lucamrtl•2d ago•26 comments

Show HN: Continue? Y/N: A 60-second game about AI agent permission fatigue

https://llmgame.scalex.dev
378•Wirbelwind•2d ago•156 comments

Show HN: VT Code – open-source terminal coding agent in Rust

https://github.com/vinhnx/VTCode
15•vinhnx•18h ago•4 comments

Show HN: Free activity calendar for schools, sports clubs, and organizations

https://freecal.eu/?lang=en
9•glenn_vc•22h ago•6 comments

Show HN: Hallucinate – Massively Multiplayer Online Rave

https://hallucinate.site
436•stagas•2d ago•194 comments

Show HN: Context-aware Japanese furigana using Sudachi and ModernBERT

https://www.ezfurigana.com/
37•epitrochoid413•1d ago•17 comments

Show HN: Open-Source AI Racing Harness

https://www.elodin.systems/post/elodin-ai-grand-prix-race-sim-harness
75•danAtElodin•3d ago•22 comments

Show HN: Promptloop – create, run, and improve prompt evals from the terminal

https://github.com/Bella3202019/promptloop
12•velapod•1d ago•2 comments

Show HN: Open-source Workspace (mail,docs,spreadsheet,drive) web/iOS

https://tinycld.org/
109•nathanstitt•3d ago•39 comments

Show HN: AionOS – self-healing microkernel in Zig (boots on real hardware)

https://github.com/rodancz/aion
5•rodancz•1d ago•0 comments

Show HN: Self Publish Studio

https://selfpublishstudio.com/
8•noahwardlow•23h ago•0 comments

Show HN: Oort – A prompt library where every listing has a shipped project

https://oortstack.com
6•Wesearchpress•1d ago•2 comments

Show HN: I brought back Airbnb categories

https://www.vibebnb.fyi/
6•giulioco•1d ago•0 comments

Show HN: A Claude Code skill that scopes problems like Peter Naur

https://github.com/spinchange/cartographer-skill/blob/main/skills/cartographer/SKILL.md
2•spinchange•19h ago•0 comments

Show HN: I made an emergency page for my family

https://help.delduca.org
82•delduca•3d ago•104 comments

Show HN: Posthorn, self-hosted mail gateway

https://github.com/craigmccaskill/posthorn
82•craigmccaskill•3d ago•60 comments

Show HN: Local-first semantic knowledge graph with magnetic-pull retrieval

https://github.com/Astralchemist/rig
4•akashi_dev•1d 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?