frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Reactor Atlas

https://reactoratlas.com
35•fedecaccia•22h ago•14 comments

Show HN: Aurict – An open-source Terminal AI

https://github.com/aurict/aurict
4•hamzakhrmn2•3h ago•1 comments

Show HN: I made a word building game supporting anagrams and one handed use

16•busymom0•20h ago•1 comments

Show HN: Interactive map of the Japanese address system

https://japanmap.fyi
6•vkuikka•4h ago•2 comments

Show HN: Prices.eu.org

https://prices.eu.org/
7•sourcecodeplz•2h ago•2 comments

Show HN: OwnTime – a chess clock for your day's priorities

https://owntime.app/
107•fmos•2d ago•58 comments

Show HN: HN Match Maker – Matching "Who Wants to Be Hired?" With "Who's Hiring?"

https://hnmatchmaker.com/
115•all2•2d ago•45 comments

Show HN: The cheapest GPU cloud – H100s at $2.04/HR, H200s at $3/HR

https://compute.cheap/
52•EmiCorleone•1d ago•20 comments

Show HN: Real-time AI news aggregator with daily digest

https://aibriefs.news
10•michelmi•20h ago•14 comments

Show HN: Word42, a wordprocessor inspired by MS Word and Abiword

https://word42.org/
4•roschdal•6h ago•0 comments

Show HN: Newton's Orchard – Browser-based space/gravity playground

https://newtonsorchard.app
30•andrewchilds•2d ago•4 comments

Show HN: A gravity simulator where forces propagate at the speed of light

https://github.com/alessandro-pioli/AstroCausal_Engine
6•alessandropioli•18h ago•0 comments

Show HN: I built my first MCP to manage Google Ads

https://adchestra.com/
15•MichalKrk•23h ago•10 comments

Show HN: Weedout – Safari extension that hides YouTube AI-labeled videos

https://masteranza.github.io/weedout/
181•masteranza•2d ago•81 comments

Show HN: Sirenfall, a civil defense siren synthesized in Web Audio

https://sirenfall.live/
5•beeswaxpat•14h ago•1 comments

Show HN: A benchmark for flight search intent

https://fjmatrix.github.io/flight-search-intent-eval/
5•rabbit_1•21h ago•0 comments

Show HN: Running 104GB Qwen3.8-Flash-Next on 48GB Mac with at ~12 tok/s

https://github.com/carloslfu/slotstream
229•carloslfu•2d ago•115 comments

Show HN: asciiQuake

https://asciiquake.wtf/
15•apresmoi•1d ago•6 comments

Show HN: Devbar – Point at what to change. Leave a comment. Your agent ships it

https://devbar.sh
3•linesofcode•15h ago•3 comments

Show HN: MesaOS – An operating system written from scratch in Rust

https://github.com/crackanimad0r/MesaOS
3•crackanimador•17h ago•13 comments

Show HN: Bridle: hand your agent's context to a coworker's agent

https://www.bridle.network/
5•withoutshape•17h ago•0 comments

Show HN: NGPDFs – 50 PDF tools that never upload your files

https://ngpdfs.com
2•amulyakashyap09•17h ago•0 comments

Show HN: WordPress search and replace that doesn't corrupt serialized data

https://github.com/ibrahimhajjaj/lucid-search-replace
2•ibrahimwithi•17h ago•0 comments

Show HN: Laser Graffiti

https://laser.consti.de
252•con•5d ago•61 comments

Show HN: Model – A Minimal Python ORM for MySQL and SQLite

https://github.com/el1s7/model
4•el1s7•17h ago•0 comments

Show HN: MCP Tool Definition Quality Score (TDQS) Spec

https://tdqs.dev
8•punkpeye•18h ago•1 comments

Show HN: LibPolyCall – a C runtime broker for cross-language function calls

https://github.com/obinexus/libpolycall-v1
3•obinexus•18h ago•0 comments

Show HN: Wordmate – local speech-to-text for macOS

https://github.com/vdszds/wordmate
4•vdszds•18h ago•0 comments

Show HN: Radia – agent coordination with leases, permissions and provenance

https://radia.sh/
2•ymodulo•18h ago•0 comments

Show HN: I built an app that makes your goals inevitable

https://www.getinference.app/
2•ifeanyi_sa•18h 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•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?