frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
760•vforno•1d ago•186 comments

Show HN: 18 Words

https://18words.com/
1043•pompomsheep•1d ago•334 comments

Show HN: Runloom – Go-style coroutines for Python free-threaded

https://github.com/robertsdotpm/runloom
2•Uptrenda•27m ago•0 comments

Show HN: Mojave Paint for macOS, edit images like it's 1999

https://mojavepaint.app/
3•jpsimons•1h ago•1 comments

Show HN: The Flint Programming Language

https://github.com/flint-lang/flintc
2•zweiler1•2h ago•0 comments

Show HN: I mapped 8.5M research papers into an interactive atlas

https://tomesphere.com/atlas
77•leonickson•1d ago•22 comments

Show HN: Analog Watch

https://analog.watch
95•ezekg•23h ago•91 comments

Show HN: Frugon – Find which LLM calls a cheaper model could handle (local, MIT)

https://github.com/Rodiun/frugon
36•jarodrh•3d ago•10 comments

Show HN: Reverse-engineering web apps into agent tools

34•pancomplex•21h ago•14 comments

Show HN: Rubiks Cube Solver

https://speedcube.com.br/
21•wozzp•16h ago•9 comments

Show HN: I built a web tool to see and edit what an AI thinks before it answers

https://lucid.earthpilot.ai
31•ada1981•19h ago•6 comments

Show HN: FableCut – A browser video editor AI agents can drive (zero deps)

https://github.com/ronak-create/FableCut
94•ronak_parmar•1d ago•58 comments

Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

https://abralo.com/
29•cwbuilds•1d ago•20 comments

Show HN: LastShelf – an emergency map of your family's documents bills& contacts

https://www.lastshelf.ai/
46•sbrown12•22h ago•31 comments

Show HN: RandoFont – A browser for Google Fonts

https://randofont.alesh.com
22•aleshh•16h ago•3 comments

Show HN: Sighthound - open-source vulnerability scanner for source code

https://github.com/Corgea/Sighthound
16•asadeddin•22h ago•0 comments

Show HN: Pylon Sync, an agent-first full-stack realtime framework

https://www.pylonsync.com
10•ericc59•19h ago•1 comments

Show HN: Devthropology – Better Insights for GitHub Repos

https://devthropology.com/demo
35•dpc94•20h ago•10 comments

Show HN: Follow London Trains in 3D

https://ride.nexttrain.london/
152•mgranados•5d ago•60 comments

Show HN: Microsoft releases Flint, a visualization language for AI agents

https://microsoft.github.io/flint-chart/#/
343•chenglong-hn•1d ago•134 comments

Show HN: Policy enforcement for Claude Code, Cursor, and Codex

https://kastra.ai/
12•carlosjimenez1•22h ago•1 comments

Show HN: Yamanote.fun – A complete soundscape for Tokyo's Yamanote line

https://www.yamanote.fun/
233•madebymagnolia•3d ago•52 comments

Show HN: R3 – A Local Code Review Tool for You and Your AI Agent

https://github.com/hyperlogue/r3
3•rickye26•9h ago•1 comments

Show HN: Neil the Seal Game

https://neiltheseal.app/
95•dalemhurley•5d ago•82 comments

Show HN: FormGrid – Forms that can look like CLIs, pixel art, GeoCities and more

https://www.formgrid.com/
12•bjoernm•22h ago•2 comments

Show HN: Debloat Slack – Get rid of Slackbot, AI upsells and other annoyances

https://github.com/benri-ai/slack-debloat
2•ed_mercer•11h ago•0 comments

Show HN: Rubber Duck

https://rubberduck.greg.technology/
10•gregsadetsky•23h ago•3 comments

Show HN: Agent Draw: An agent draws while you talk, built on TLDraw

https://techstackups.com/articles/tldraw-agent-draw/
36•jameswhitford•3d ago•14 comments

Show HN: Selvedge – long-term memory for AI-coded codebases

https://selvedge.sh/
4•masondelan•12h ago•0 comments

Show HN: Fortress – Give your agents unlimited access to the web

9•armanluthra_•12h ago•4 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?