frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Garden of Flowers – an archive of pictorial typography before ASCII art

https://garden-of-flowers.heikkilotvonen.com/
90•california-og•8h ago•14 comments

Show HN: AppointMe – open-source .NET SaaS template (modular monolith, DDD)

https://github.com/bravodev-hub/appointme
2•eugene-maksak•20m ago•0 comments

Show HN: SharkClean MCP

https://github.com/a-funk/sharkclean-mcp
12•afunk•3d ago•3 comments

Show HN: Write SaaS apps where users control where their data is stored

https://linkedrecords.com/
3•WolfOliver•1h ago•2 comments

Show HN: Fata – Spaced repetition to fight skill rot from AI coding

https://fata.dev
103•djoume•5d ago•51 comments

Show HN: Veterinarian turned founder, AI lawn diagnosis

https://grassdx.com/
66•andrewbr•18h ago•55 comments

Show HN: CoreMCP – MCP Server for On-Prem DBs

https://github.com/corebasehq/coremcp
3•y11t0•2h ago•1 comments

Show HN: machine0 – Persistent NixOS VMs You Control from the CLI

https://machine0.io
88•bwm•20h ago•34 comments

Show HN: Kage – Shadow any website to a single binary for offline viewing

https://github.com/tamnd/kage
686•tamnd•1d ago•137 comments

Show HN: Zero Browser

https://github.com/nz366/zero_browser
11•zeron0a•13h ago•6 comments

Show HN: Trace – Offline Mac meeting transcripts you can flag mid-call

https://traceapp.info
201•AG342•2d ago•82 comments

Show HN: Exploiting Slack's video embeds to achieve E2EE communication

https://v1c.rocks/log/exploiting-slack-video/
31•victorio•20h ago•3 comments

Show HN: FlashQwen – A from-scratch CUDA inference engine for Qwen3

https://github.com/frankkk96
3•langtang1996•6h ago•0 comments

Show HN: Discover Wikipedia articles popular on Hacker News

https://www.orangecrumbs.com/
133•octopus143•1d ago•31 comments

Show HN: I wrote a C++ ray tracer from scratch without AI

https://github.com/themartiano/luz
148•martiano•1d ago•64 comments

Show HN: Claude Code for Visual Studio (native diff with accept/reject)

https://github.com/firish/claude_code_vs
19•firish•13h ago•6 comments

Show HN: Nxui – Copy-paste animated UI components for Vue

https://nxui.geoql.in/docs/
13•vinayakkulkarni•23h ago•4 comments

Show HN: When Will AI? – A timeline of top AI predictions

https://whenwill.ai
6•jaymeh13•14h ago•0 comments

Show HN: Locket – Robust feature-level access control for LLMs

https://github.com/ssg-research/locket
3•ttttonyhe•10h ago•0 comments

Show HN: Deep-XPIA – Prompt injection benchmark for multi-agent AI systems

https://freyzo.github.io/deep-xpia/
3•leo_agent•10h ago•0 comments

Show HN: I am building a map of people who lived in the Roman Empire

https://new.roman-names.com/
206•metiscus•5d ago•47 comments

Show HN: Paca – Lightweight Jira alternative for human-AI collaboration

https://github.com/Paca-AI/paca
171•pikann22•3d ago•60 comments

Show HN: Homebrew 6.0.0

https://brew.sh/2026/06/11/homebrew-6.0.0/
1470•mikemcquaid•4d ago•361 comments

Show HN: StarScope – Free astronomy dashboard for observers outside the US/UK

https://starscope.live/feed
5•xenophin•17h ago•0 comments

Show HN: Track trending GitHub repos on HN

https://hn-github-reader.vercel.app/
6•vipulag•21h ago•0 comments

Show HN: A pure-Ruby X11 terminal

https://github.com/vidarh/rubyterm
8•vidarh•18h ago•8 comments

Show HN: HashMeterAi – Private AI Token Real Usage Meter for All Models

https://github.com/Hash-7777/HashMeterAi
3•Hash7777•13h ago•1 comments

Show HN: Tamper-evident audit trail for AI coding agent activity

https://github.com/Constellation-Labs/gate-oc-audit
3•gclaramunt•13h ago•1 comments

Show HN: Subagent-fleet – AI coding subagents across local Ollama machines

https://pypi.org/project/subagent-fleet/
3•akarnam37•13h ago•0 comments

Show HN: 3D print Z reinforcement via injected loops

https://mgunlogson.github.io/magma/
65•mgunlogson•6d ago•56 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?