frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Itsuki – open-source memory engine for AI agents (API and MCP)

https://itsuki.app/
2•12ziyad•31m ago•1 comments

Show HN: Tokensift, an open-sourced token-efficiency linter for LLM prompts

https://github.com/ritenv/tokensift
2•ritenv•1h ago•0 comments

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

https://usesesame.app/
51•d0mkaaa•13h ago•67 comments

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

https://subsmith.app
66•IbrahimF96•21h ago•51 comments

Show HN: AMC Stocks Hub – asset-manager profiles, 13F holdings, and co-holdings

https://assetmanagementcompany.net/
2•lzyuan1006•2h ago•0 comments

Show HN: The load-bearing vocabulary of Claude

https://louisabraham.github.io/load-bearing/
660•Labo333•1d ago•319 comments

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

https://github.com/elyosh/OpenTIE/
218•elyosh•1d ago•56 comments

Show HN: Metis – An agent harness pushing DeepSeek to Opus-tier coding (82%)

https://github.com/Wholiver/metis
3•oliverhuchenrui•5h ago•2 comments

Show HN: Hacker News Client with Claude Code and Codex Integration

https://github.com/nilbuild/rundown
8•kamranahmedse•12h ago•0 comments

Show HN: Blast – Open-source sandbox-as-a-service

https://github.com/stanford-mast/blast
10•calebhwin•14h ago•0 comments

Show HN: 500,000+ AOL Instant Messenger Buddy Icons All at Once

https://buddyiconarchive.com/
6•shedletsky•9h ago•0 comments

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

https://github.com/opslane/opslane
35•aray07•1d ago•11 comments

Show HN: An annotated archive of S-1 filings, with hindsight

https://s-1.space/
2•eigen-vector•7h ago•0 comments

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

https://github.com/experientiallabs/experiential
208•SilenN•1d ago•46 comments

Show HN: Awe Radio, free 24/7 internet radio stations for anyone

https://aweradio.app/
2•vbst•8h ago•2 comments

Show HN: NodeAkt – Zero-dependency distributed actor framework for TypeScript

https://tochemey.github.io/nodeakt/
4•Tochemey•8h ago•0 comments

Show HN: FeatureFlags.app – Feature Management for .NET

https://featureflags.app/
4•avlcodemonkey•15h ago•0 comments

Show HN: I read 648 banks' exchange boards daily to show what they charge

https://myratefx.com/
5•pedroalbaladejo•16h ago•2 comments

Show HN: Boop – tiny, self-hosted push notifications for your apps built in Go

https://github.com/chrisgreg/boop
6•bustylasercanon•13h ago•2 comments

Show HN: A lightweight, stateless database for agent memory

https://polign.com/blog-edge-agent-memory
34•anuptalwalkar•2d ago•12 comments

Show HN: Voronoi Go

https://voronoigo.com/
154•igpay•1d ago•26 comments

Show HN: Texttile, a multiplayer blog engine for people who write together

https://www.texttile.blog/
13•klausbreyer•20h ago•3 comments

Show HN: Build your own theme park

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

Show HN: My Claude quota ran out in 10 minutes, so I made a tool to find out why

https://github.com/kelviq/tare
86•sachinneravath•1d ago•64 comments

Show HN: Kosh – Bash shell runtime with 100x faster Shellcheck and LSP built-in

https://github.com/toiletbril/kosh
6•toiletbril•11h ago•1 comments

Show HN: Kvist – a Lisp for systems programming that compiles to Odin

https://github.com/kvist-lang/kvist
3•andreasflakstad•11h ago•2 comments

Show HN: FnScribe – Open-source, offline dictation for macOS

https://github.com/AlgorithmicResearchGroup/fnscribe
20•modagent•1d ago•14 comments

Show HN: Restoredrill – proves your Postgres backups restore

https://github.com/ahmadpiran/restoredrill
46•ahmadpiran•1d ago•22 comments

Show HN: OpenLayer – local Photoshop plugin for ComfyUI (inpaint/outpaint demo)

https://github.com/MehranMarxian/OpenLayer
6•HMUSER•16h ago•0 comments

Show HN: RealDiff – runtime behavior diffing for pull requests (six languages)

https://github.com/issacnitin/RealDiff
40•issacnitin•1d ago•10 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?