frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Oak – Git alternative designed for agents

https://oak.space/oak/oak
147•zdgeier•10h ago•141 comments

Show HN: Durable Agent Sessions API (Preview)

https://opencomputer.durableagents.dev/
2•igorzij•4m ago•0 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
140•HaxleRose•13h ago•99 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
48•zhubert•1d ago•69 comments

Show HN: Selector Forge – browser extension for AI-generated resilient selectors

https://github.com/Intuned/selector-forge
31•ahmadilaiwi•11h ago•1 comments

Show HN: HN Game Stories – mini-documentary of games that hit the front page

https://video.intellios.ai
14•coolwulf•2d ago•1 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
174•olievans•2d ago•54 comments

Show HN: Recall – Local project memory for Claude Code

https://github.com/raiyanyahya/recall
127•mateenah•1d ago•81 comments

Show HN: Teach your kids perfect pitch

https://github.com/paytonjjones/bsharp
202•paytonjjones•1d ago•140 comments

Show HN: React Native Boost – swaps RN's Text/View wrappers for native ones

https://github.com/kuatsu/react-native-boost
5•mfkrause•8h ago•1 comments

Show HN: Socket to Me, a static file server that runs in the browser

https://socket2.me/
12•markjivko•13h ago•2 comments

Show HN: MiniPCs.zip – Charting the Pareto frontier of Mini PCs

https://minipcs.zip
43•yathern•2d ago•21 comments

Show HN: TownSquare, a tiny presence layer for websites

https://townsquare.cauenapier.com/
265•cauenapier•2d ago•153 comments

Show HN: StartupWiki – A Free Alternative to Crunchbase

https://startupwiki.tech/
230•shpran•2d ago•69 comments

Show HN: Kitcat 2.0 – A Matplotlib back end for terminal plotting

https://mil.ad/blog/2026/kitcat-2.0.html
4•playnext•8h ago•0 comments

Show HN: Crespo – Tree-sitter AST blueprints instead of raw code for LLMs

https://github.com/hrudulmmn/crespo
13•ByteJoseph•22h ago•1 comments

Show HN: Block/buzz: a workspace built for teams of humans and agents

https://github.com/block/buzz
18•ThomPete•8h ago•7 comments

Show HN: Make PDFs look scanned (CLI or in the browser via WASM)

https://github.com/overflowy/make-look-scanned
151•overflowy•2d ago•64 comments

Show HN: I rebuilt the only parts of my IDE I use, in Rust, over a weekend

https://github.com/kyle-ssg/kyde
45•kyle-ssg•12h ago•72 comments

Show HN: Smolsonic – A Subsonic-compatible music server written in Rust

https://github.com/tsirysndr/smolsonic
3•tsiry•9h ago•0 comments

Show HN: Prismag – Per-block model routing for the terminal and any IDE

https://github.com/rufus-SD/prismag
5•arthur-G•16h ago•0 comments

Show HN: Pulse – Dashboard for Claude Code, approve tool calls from your phone

https://github.com/nikitadoudikov/claude-pulse
39•nikitadvd•2d ago•14 comments

Show HN: KeyGhost – Keyboard app launcher for macOS

https://keyghost.dev/
6•3stacks•15h ago•5 comments

Show HN: Microcrad – Micrograd Reimplemented in C

https://github.com/oraziorillo/microcrad
78•oraziorillo•5d ago•28 comments

Show HN: Talos – Open-source WASM interpreter for Lean

https://github.com/cajal-technologies/talos
106•mfornet•4d ago•28 comments

Show HN: StartupsBR – A map of Brazilian startups

https://www.startupsbr.com/sao-paulo
16•leonagano•3d ago•7 comments

Show HN: Revenant – automatic LLM powered reverse engineering and reimplement

7•sylwester•11h ago•0 comments

Show HN: Monolisa v3 – a typeface for developers and creatives

https://www.monolisa.dev/
32•bebraw•11h ago•4 comments

Show HN: Gerrymandle - Daily puzzle game where you redraw electoral districts

https://gerrymandle.cc/
236•realmofthemad•4d ago•78 comments

Show HN: We post-trained a model that pen tests instead of refusing

https://www.argusred.com/cli
91•dk189•2d ago•40 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?