frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: NFC Energy-Harvesting PCB Business Card with an MCU

https://wilsonharper.net/projects/businesscard/
166•WilsonHarper•2d ago•17 comments

Show HN: I missed the moving blocks, so I built a real Linux disk defragmenter

https://github.com/gbin/defragger
93•gbin•5d ago•67 comments

Show HN: Card Shop Directory – Find trading card shops by state, city, and game

https://cardshopdir.com
2•laimingj•6h ago•0 comments

Show HN: I asked LLMs to choose between popular developer tools

https://github.com/betocmn/preseason
3•thedreammachine•6h ago•0 comments

Show HN: ScoutLayer – a simple API to find contacts from a domain

https://scoutlayer.io
4•yuangwya•6h ago•1 comments

Show HN: Typebase – A single-folder back end you write in TypeScript

https://typebase.io
117•andrewww-dev•4d ago•30 comments

Show HN: Galaxium, an experimental WebGPU space explorer

https://galaxium.app
133•guillaumec•6d ago•39 comments

Show HN: Break 5, the addictive, free 5 minute, daily word game

https://break5.co.uk/
3•dwgebler•8h ago•0 comments

Show HN: What Apple's OS updates silently change in the on-device AI model

https://umer9538.github.io/underfoot/
2•Umer2521•9h ago•0 comments

Show HN: Hillock: Local neuro-symbolic memory engine in <1.2GB VRAM

https://github.com/roandejager/Hillock
10•roandejager5•14h ago•2 comments

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
75•IbrahimF96•2d ago•51 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
694•Labo333•3d ago•326 comments

Show HN: Drop a SQL schema, get an interactive ER diagram

https://mcdview.dev/
14•PatuDev•22h ago•5 comments

Show HN: Bolnee-Chat – Self Hosted Chatbot Integration in Your Business Website

https://github.com/AniketWathore/bolnee-chat
32•AniketWathore•22h ago•0 comments

Show HN: Sesame - a local-first, open-source password manager

https://usesesame.app/
65•d0mkaaa•2d ago•85 comments

Show HN: Cogram Studio – CAD and BIM workspace for humans and agents

https://studio.cogram.com/
6•alexvboe•14h ago•0 comments

Show HN: C# Game Engine with its own scripting language and IDE

https://github.com/ArcadeMakerSources/ArcadeMaker/tree/master
11•am-gm•20h ago•0 comments

Show HN: My startup-idea scanner scored 500 ideas; the best got 6.3/10

https://1mil.app/
7•fayerman•21h ago•4 comments

Show HN: OpenTIE and OpenXWA, Modern Ports of Tie Fighter and X-Wing Alliance

https://github.com/elyosh/OpenTIE/
227•elyosh•3d ago•58 comments

Show HN: CardGo – Reusable, end-to-end encrypted context cards for AI chats

https://cardgo.ai
4•trinhngocdieu•16h ago•0 comments

Show HN: BentoPDF, Hyper Compress and Kura

https://www.bentopdf.com
3•__alam__•16h ago•0 comments

Show HN: Snaketron – Competitive multiplayer Snake. Back after 14 years

https://snaketron.io
5•lopatin•17h ago•1 comments

Show HN: Delete yourself from data brokers without a subscription

https://github.com/k7cfo/remove-your-data
22•k7peak•1d ago•6 comments

Show HN: Murmell – Collaborative cloud canvas for coding agents

https://murmell.com/
8•Mossab22•18h ago•2 comments

Show HN: Cushion – PouchDB on Deno KV

https://jsr.io/@mikehall314/cushion
7•mikehall314•18h ago•1 comments

Show HN: Watches user sessions, finds bugs that matter, and fixes them

https://github.com/opslane/opslane
40•aray07•3d ago•11 comments

Show HN: Build your own theme park

https://www.magicpatterns.com/theme-park
57•thealexanderlee•4d ago•25 comments

Show HN: We built open OpenRouter that turns usage into a better model

https://github.com/experientiallabs/experiential
220•SilenN•3d ago•46 comments

Show HN: Flint – A minimal C/C++ package manager and build tool written in C

https://github.com/mainak55512/flint
12•mbhatt99•1d ago•2 comments

Show HN: Self-hosted mobile-friendly web UI for Herdr agents

https://github.com/luiscleto/shepherdr
6•lfcc•21h 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?