frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Write SaaS apps where users control where their data is stored

https://github.com/wolfoo2931/linkedrecords/
3•WolfOliver•5d ago•0 comments

Show HN: Nub – A Bun-like all-in-one toolkit for Node.js

https://github.com/nubjs/nub
211•colinmcd•13h ago•62 comments

Show HN: Wordit – Change One Letter, Keep the Chain Going

https://victorribeiro.com/wordit/
11•atum47•1d ago•11 comments

Show HN: Monolisa v3 – a typeface for developers and creatives

https://www.monolisa.dev/
165•bebraw•2d ago•61 comments

Show HN: LookAway, a Mac break reminder that knows when not to interrupt

https://lookaway.com
54•_kush•13h ago•16 comments

Show HN: peerd – AI agent harness that runs entirely in your browser

https://github.com/NotASithLord/peerd
58•NotASithLord•1d ago•20 comments

Show HN: Pure Effect – Reproduce production bugs on your laptop without a DB

https://pure-effect.org
54•tie-in•3d ago•13 comments

Show HN: Promptctl – Git for your AI prompts

https://github.com/naya-ai/promptctl
2•shawnaya101•2h ago•0 comments

Show HN: Built an Obsidian plugin that rephrases your writing without takin over

https://rephrasethis.co
4•gpickett00•3h ago•0 comments

Show HN: An ASCII 3D Rendering Engine

https://glyphcss.com
203•apresmoi•4d ago•49 comments

Show HN: RealTube – Watch YouTube with filters for AI-generated content

https://realtube.io
4•danielpop•4h ago•1 comments

Show HN: GDPRedirect – Become EU compliant in one line of code (satire)

https://gdpredirect.com
4•apwn•5h ago•0 comments

Show HN: TikZ Editor – WYSIWYG editor for figures in LaTeX

https://tikz.dev/editor/
437•DominikPeters•1d ago•74 comments

Show HN: An LLM agent that emits typed intent

https://github.com/gabert/ontocortex
2•gabert•6h ago•1 comments

Show HN: Dspyer – self-correcting, optimizable LLM steps for DSPy and LangGraph

https://github.com/theramkm/dspyer
2•ramkm•6h ago•0 comments

Show HN: Graphical SQL Builder and Debugger

https://github.com/webofmarius/SQLJoiner
21•matei88•2d ago•6 comments

Show HN: Got sick of ads, so I made my own logic puzzle site

https://puzzlelair.com/
243•HaxleRose•2d ago•151 comments

Show HN: FastUbu – An Ultrafast Video Archive

https://fastubu.com/
45•lukeigel•2d ago•6 comments

Show HN: Neural Particle Automata

https://selforg-npa.github.io/
87•esychology•1d ago•19 comments

Show HN: The Cascade Graph – An interactive map of AI and energy constraints

https://atomprophet.io/tools/cascade/
26•antisyzygy•1d ago•12 comments

Show HN: Lumli – Privacy-first image tools that run entirely in your browser

https://www.lumli.de
4•lumli•8h ago•0 comments

Show HN: CleverCrow: give tokens to your favorite projects

https://clevercrow.io
65•zhubert•3d ago•79 comments

Show HN: Lelu – gate OpenAI agent actions on confidence and prompt injection

https://github.com/Lelu-ai/lelu
5•abeni1990•8h ago•0 comments

Show HN: Accent Roulette – guess a stranger's country from their voice

https://accent-roulette.com
3•townload•9h ago•3 comments

Show HN: RLM-based local debugger for AI agent traces

https://github.com/context-labs/halo
25•mikepollard_dev•1d ago•10 comments

Show HN: Shumai – open-source Frame.io alternative for creative work

https://github.com/shumaiOne/shumai
59•Yiling-J•1d ago•4 comments

Show HN: Treedocs: Documentation that automatically checks for staleness

https://dandylyons.github.io/treedocs/
52•DandyLyons•1d ago•18 comments

Show HN: DBOSify – Drop-in Temporal replacement built on Postgres

https://github.com/dbos-inc/dbosify-py
4•KraftyOne•10h ago•1 comments

Show HN: Follow the Thread – a calmer, typographic way to read Wikipedia

https://read.filteredctrl.com
2•khaki_pine•10h ago•0 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
191•olievans•4d ago•55 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?