frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Twitch Roulette – Find live streamers who need views the most

https://twitchroulette.net/
126•ellg•12h ago•62 comments

Show HN: How to get 100 customers building in public

https://snaprookies.org/blog/marc-lou-and-trustmrr-how-a-solo-founder-turned-trust-into-a-saas-asset
2•RichardOdds•1h ago•0 comments

Show HN: VizTools – 16 free tools for PMs and freelancers, deliberately no AI

https://viztools.app/
3•mizarau•5h ago•0 comments

Show HN: Foundry: a Markdown-first CMS written in Go

https://github.com/sphireinc/Foundry
24•nsayoda•17h ago•8 comments

Show HN: Open Source 'Conductor + Ghostty'

https://github.com/stablyai/orca
15•nwparker•12h ago•7 comments

Show HN: Turbolite – a SQLite VFS serving sub-250ms cold JOIN queries from S3

https://github.com/russellromney/turbolite
170•russellthehippo•1d ago•42 comments

Show HN: I put an AI agent on a $7/month VPS with IRC as its transport layer

https://georgelarson.me/writing/2026-03-23-nullclaw-doorman/
325•j0rg3•1d ago•94 comments

Show HN: Fio: 3D World editor/game engine – inspired by Radiant and Hammer

https://github.com/ViciousSquid/Fio
91•vicioussquid•1d ago•10 comments

Show HN: Kagento – LeetCode for AI Agents

https://kagento.io
9•ifdotpy•14h ago•1 comments

Show HN: Grafana TUI – Browse Grafana dashboards in the terminal

https://github.com/lovromazgon/grafana-tui
17•lmazgon•23h ago•4 comments

Show HN: Sup AI, a confidence-weighted ensemble (52.15% on Humanity's Last Exam)

https://sup.ai
22•supai•1d ago•25 comments

Show HN: Optio – Orchestrate AI coding agents in K8s to go from ticket to PR

https://github.com/jonwiggins/optio
82•jawiggins•2d ago•57 comments

Show HN: Veil – Dark mode PDFs without destroying images, runs in the browser

https://veil.simoneamico.com/
91•simoneamico•1d ago•28 comments

Show HN: Minimalist library to generate SVG views of scientific data

https://github.com/alefore/mini_svg/
43•afc•4d ago•4 comments

Show HN: A plain-text cognitive architecture for Claude Code

https://lab.puga.com.br/cog/
152•marciopuga•2d ago•49 comments

Show HN: NUPA is Pax Economica, 6,480x more stable than current US economy

2•bedardbrandon89•4h ago•1 comments

Show HN: Anvil – Desktop App for Spec Driven Development

https://github.com/zdenham/anvil
6•zdenham•15h ago•0 comments

Show HN: I took back Video.js after 16 years and we rewrote it to be 88% smaller

https://videojs.org/blog/videojs-v10-beta-hello-world-again
639•Heff•3d ago•137 comments

Show HN: Build AI Trading Agents in Cursor/Claude with an MCP Server

https://financialdata.net/mcp-server
4•financial-data•17h ago•0 comments

Show HN: Open-Source Animal Crossing–Style UI for Claude Code Agents

https://github.com/outworked/outworked/releases/tag/v0.3.0
45•ZeidJ•17h ago•39 comments

Show HN: Forkrun – NUMA-aware shell parallelizer (50×–400× faster than parallel)

https://github.com/jkool702/forkrun
7•jkool702•22h ago•1 comments

Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build

https://github.com/AmElmo/proofshot
157•jberthom•4d ago•96 comments

Show HN: Robust LLM extractor for websites in TypeScript

https://github.com/lightfeed/extractor
70•andrew_zhong•2d ago•47 comments

Show HN: Alumnium – SOTA Browsing for Claude Code

https://alumnium.ai/blog/webvoyager-benchmark/
5•p0deje•19h ago•0 comments

Show HN: AI Roundtable – Let 200 models debate your question

https://opper.ai/ai-roundtable/
112•felix089•3d ago•89 comments

Show HN: For You – AI art floats down a river for strangers to find

https://www.foryouriver.com/
4•arclegger•15h ago•8 comments

Show HN: Email.md – Markdown to responsive, email-safe HTML

https://www.emailmd.dev/
377•dancablam•3d ago•94 comments

Show HN: DuckDB community extension for prefiltered HNSW using ACORN-1

https://github.com/cigrainger/duckdb-hnsw-acorn
90•cigrainger•3d ago•6 comments

Show HN: MLForge: A Visual Machine Learning Platform

https://github.com/zaina-ml/ml_forge
3•zaina-ml•16h ago•2 comments

Show HN: Control Codex via WhatsApp using a Codex plugin

https://github.com/abuiles/codex-whatsapp-relay
4•abuiles•17h ago•0 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•10mo 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•10mo ago
What makes Solidis more performant than other Redis clients like ioredis or redis
jayl-e-e•10mo 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•10mo 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•10mo 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•10mo ago
Improvement deployed!
swaptr•10mo 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•10mo ago
It's my pleasure! :)
jayl-e-e•10mo ago
swaptr, thank you for your contribution to Solidis! May I know how to contact you?