frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Mindwalk – Replay coding-agent sessions on a 3D map of your codebase

https://github.com/cosmtrek/mindwalk
120•cosmtrek•10h ago•52 comments

Show HN: Skillscript – A declarative, sandboxed language for tool orchestration

https://github.com/sshwarts/skillscript
4•sshwarts•2h ago•0 comments

Show HN: Ant – A JavaScript runtime and ecosystem

https://antjs.org
308•theMackabu•19h ago•137 comments

Show HN: Kurvengefahr – browser CAD/CAM for pen plotters

https://kurvengefahr.org/
2•tibordp•1h ago•0 comments

Show HN: Learn by rebuilding Redis, Git, a database from scratch

https://shipthatcode.com
184•acley•1d ago•62 comments

Show HN: Getting GLM 5.2 running on my slow computer

https://github.com/JustVugg/colibri
906•vforno•3d ago•231 comments

Show HN: Orbit – AR satellite tracker, watch 15k+ objects

https://nagylukas.github.io/orbit.html
83•lukas9•23h ago•19 comments

Show HN: Sqlsure – deterministic semantic checks for AI-generated SQL

https://github.com/sqlsure/sqlsure
36•tejusarora•19h ago•6 comments

Show HN: 18 Words

https://18words.com/
1135•pompomsheep•3d ago•357 comments

Show HN: Earth Game – An offline CLI for turning life goals into quests

https://github.com/skorotkiewicz/earth-game
49•modinfo•23h ago•10 comments

Show HN: Reame – a CPU inference server that gets faster as it runs

https://github.com/swellweb/reame
54•targetbridge•23h ago•16 comments

Show HN: Fenzo – Build an interactive course on any topic

https://fenzo.ai/
3•fahimulhaq•5h ago•0 comments

Show HN: Grinta – a local-first coding agent built for long autonomous runs

https://github.com/josephsenior/Grinta-Coding-Agent
2•JosephSenior•6h ago•0 comments

Show HN: Reverse-engineering web apps into agent tools

91•pancomplex•3d ago•38 comments

Show HN: Confessor – replay what private info Claude Code accessed on your PC

https://github.com/ninjahawk/Confessor
7•ninjahawk1•13h ago•1 comments

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

https://github.com/Rodiun/frugon
66•jarodrh•5d ago•23 comments

Show HN: Zero Trust Boundary for Agents

https://github.com/Open-AGS/attestor
3•Oxlamarr•8h ago•0 comments

Show HN: Wyrm – Solve algebra by touch, built on an open-source soundness engine

https://github.com/dicroce/wyrm_math
81•dicroce•3d ago•24 comments

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

https://abralo.com/
37•cwbuilds•4d ago•29 comments

Show HN: Reviving my 2001 college band with AI

https://www.fadingmaize.com
56•jacobgraf•2d ago•59 comments

Show HN: Hidetext.sh – encrypted pastebin where the server never sees the key

https://hidetext.sh
6•hidetext•1d ago•0 comments

Show HN: Dotenv-Diff v3.0.0

https://github.com/Chrilleweb/dotenv-diff
16•chrillemn•4d ago•1 comments

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

https://github.com/robertsdotpm/runloom
47•Uptrenda•2d ago•29 comments

Show HN: We beat Anubis with our stealth MCP

https://tilion.dev/blog/anubis-proof-of-work
10•armanluthra_•13h ago•4 comments

Show HN: Analog Watch

https://analog.watch
106•ezekg•3d ago•96 comments

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

https://tomesphere.com/atlas
83•leonickson•3d ago•26 comments

Show HN: Levee – a self-tuning circuit breaker and concurrency limiter for Go

https://github.com/codemartial/levee
3•code_martial•14h ago•0 comments

Show HN: SubjectiveZero, an open-source agentic node editor for creative coding

https://sxp.studio/apps/subz
25•tasoeur•2d ago•4 comments

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

https://github.com/ronak-create/FableCut
98•ronak_parmar•3d ago•59 comments

Show HN: Follow London Trains in 3D

https://ride.nexttrain.london/
155•mgranados•1w ago•62 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?