frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Mole – Deep research agent for your terminal

https://github.com/lajosdeme/mole
45•lajosdeme•5h ago•6 comments

Show HN: Ember – Redshift safe color palettes

https://github.com/carpdiem/ember
53•carpdiem•5d ago•13 comments

Show HN: LuaCAD – Parametric CAD Scripted in Lua

https://luacad.ad-si.com
68•adius•7h ago•13 comments

Show HN: Musical social media site where you can throw tomatoes at each other

https://mazurka.cafe/
2•Ambroza•2h ago•0 comments

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

https://github.com/ArcadeMakerSources/ArcadeMaker
104•am-gm•3d ago•55 comments

Show HN: Mocktail – Free, open-source mock API server with a built-in dashboard

https://getmocktail.com/
4•hhaluk•4h ago•0 comments

Show HN: Banquish – Take other websites apart and build your own

https://banquish.space
4•ghboo0927•4h ago•0 comments

Show HN: AletheionAGI – Grounding enforcement for AI agents

https://www.aletheionagi.com
4•felipemayamuniz•5h ago•0 comments

Show HN: Lumabri – Run Moe Models on a P2P Swarm with Colibri

https://github.com/JustVugg/lumabri
44•vforno•23h ago•18 comments

Show HN: Is AI Dumber Today? An index of AI model experience from user's opinion

https://isaidumber.today/
14•schafberg•10h ago•5 comments

Show HN: A simple, powerful, and cheaper email verification API

https://emailverifier.dev/
2•usamaejaz•3h ago•1 comments

Show HN: Wevna – Local-first runtime dashboard for Node.js back ends

https://github.com/wevna/wevna
3•boluajy•3h ago•0 comments

Show HN: Online SNMP MIB database - upload/view your own MIBs

https://mib-viewer.com/
12•beefstew123•8h ago•0 comments

Show HN: Rdio – an open-source internet radio control suite

https://rdio-docs.vercel.app
18•taqibrahim•12h ago•3 comments

Show HN: Made a business license hub search tool

https://fernway.io/license-search
2•leyu00•4h ago•1 comments

Show HN: Lambdock – Wayland-native GTK4 dock with a live Lisp REPL

https://codeberg.org/jjba23/lambdock
38•jjba23•3d ago•1 comments

Show HN: Mininote: Instant, plain-text note taking without tracking or lock-in

https://mininote.ink/
18•helba-ai•9h ago•3 comments

Show HN: Hacker News minus the slop

https://hnfiltered.com/
3•potatopotaro•4h ago•1 comments

Show HN: Procedural Generated Grafitti Wall

https://procgrafprot.vercel.app/wall
5•whtspc64•4h ago•0 comments

Show HN: E3d-pilot – a repo-improving agent harness, SHA-gated merges

https://github.com/spacepacket1/e3d-pilot
3•spacepacket•4h ago•0 comments

Show HN: Streambench – Native Mac Client for Kafka and NATS

https://streambench.app
2•valentinprgnd•5h ago•1 comments

Show HN: Agentic Task Management

https://github.com/myaa2913/agentic-task-management/tree/main
4•mcorrito•5h ago•0 comments

Show HN: Biasly.ai – Bias detection with historical context

https://biasly.ai/
2•jayubba1•5h ago•0 comments

Show HN: A simple list for concerts in NYC

https://singledigit.nyc/
3•ChrisbyMe•5h ago•0 comments

Show HN: Getting review comments out of Overleaf, and into the PDF

https://github.com/Mangluu/overleaf-comments-export
3•manglu•5h ago•0 comments

Show HN: PasteDaemon – Automatically remove tracking from URLs and more

https://pastedaemon.app
5•ahalbert4•5h ago•0 comments

Show HN: Captain, AI Travel Agent

https://www.moonlight.ng/captain/
4•fathermerry•6h ago•0 comments

Show HN: Open-source and AI native web analytics

https://github.com/OpenLabs-so/openanalytics
5•rahulbridge•6h ago•0 comments

Show HN: Artifex - Graph Based GPU Harness for AI Agents

https://gatewai.studio/artifex
6•oknaslnkn•12h ago•0 comments

Show HN: MCP Memory – Fast Agent Memory Using Google's OKF and SQLite FTS5

https://github.com/fellowgeek/mcp-memory
62•pcbmaker20•1d ago•35 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?