frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Fast, native Mac file manager (filters, fuzzy find, 9 MB, no Electron)

https://whimfiles.com
22•whimbyte•3h ago•17 comments

Show HN: A Haskell programmable-CAD environment, in the browser with WASM

https://doscienceto.it/waterpark/
4•hungryjoewarren•2h ago•0 comments

Show HN: Pulpie – Models for Cleaning the Web

https://usefeyn.com/blog/pulpie-pareto-optimal-models-for-cleaning-the-web/
94•snyy•19h ago•25 comments

Show HN: A free, GPU-accelerated Texas Hold'em GTO solver in C++/CUDA

https://bupticybee.github.io/texassolver_gpu_page/
4•bupticybee•4h ago•2 comments

Show HN: 99 Business Ideas

https://99ideas.jaksa.me/
2•jaksa•4h ago•1 comments

Show HN: InstantVideos.org – short documentaries in ~30 seconds

https://instantvideos.org/
23•pw•12h ago•30 comments

Show HN: LLM Thought Visualization

https://github.com/ninjahawk/Subtext
21•ninjahawk1•12h ago•4 comments

Show HN: Otari: your open-source LLM control plane

https://github.com/mozilla-ai/otari
17•angpt•14h ago•1 comments

Show HN: Homegames. An open-source game platform I've been making for 8 years

https://homegames.io
224•homegamesjoseph•1d ago•54 comments

Show HN: Osint tool that finds exposed files on domains

https://search.cerast-intelligence.com/
58•PatchRequest•1d ago•21 comments

Show HN: Disclosure Lookup – a Caido plugin that finds where to report a vuln

https://github.com/disclose/caido-lookup
2•caseyjohnellis•8h ago•0 comments

Show HN: orzma – a terminal emulator that renders webviews inside the terminal

https://github.com/not-elm/orzma
8•notelm•16h ago•9 comments

Show HN: Focal Harvest – CLI research pipeline to search, scrape and notify

https://github.com/techno-neighbour/focal-harvest
8•xlr8_track•18h ago•0 comments

Show HN: I Built LangGraph for Swift

https://github.com/christopherkarani/Swarm
24•christkarani•21h ago•3 comments

Show HN: Scan your AI agents for dangerous capabilities

https://github.com/makerchecker/MakerChecker
42•smashini•22h ago•19 comments

Show HN: Paint the Earth on a live, interactive globe (collaborative art.)

https://earth.tattoo
18•earth-tattoo•1d ago•14 comments

Show HN: Tarot.free – Free Tarot Readings

https://tarot.free/
3•nadermx•11h ago•2 comments

Show HN: Bramble – Local-first password manager

https://github.com/flythenimbus/bramble
146•MegagramEnjoyer•4d ago•48 comments

Show HN: Dedtxt is a quiet, cross-platform plain-text editor

https://dedtxt.app/
5•chrisportka•11h ago•1 comments

Show HN: GeoLens – a self-hosted catalog and map builder for spatial data

https://getgeolens.com/
3•ishiland•11h ago•0 comments

Show HN: Nectar, a Rust-like React that compiles to WebAssembly

https://buildnectar.com
8•blakeburnette•20h ago•1 comments

Show HN: Capsule – E2E encrypted file sharing

https://withcapsule.dev/
5•seanathan•12h ago•0 comments

Show HN: An interactive, interlinked city exploration project (St. Louis)

https://stlouing.com/
7•stlouing•17h ago•1 comments

Show HN: KiCad in the Browser

https://demo.pcbjam.com/
107•ViktorEE•1d ago•32 comments

Show HN: Cindy – Managing infrastructure at breakneck speed

https://cindy.rs
2•martinkroner•12h ago•0 comments

Show HN: L9gpu – GPU telemetry that ties each GPU to the K8s pod or Slurm job

https://github.com/last9/gpu-telemetry
18•nishantmodak•13h ago•0 comments

Show HN: Visualize Model Spikiness in 3D

https://www.modelmap.tech/
18•afunk•4d ago•4 comments

Show HN: Schwifty – quickly find and reuse previously executed commands

https://github.com/vanesterik/schwifty
2•bakkerinho•13h ago•1 comments

Show HN: Char-width – final answer to measure terminal text width

https://www.npmjs.com/package/char-width
3•dawson0•19h ago•0 comments

Show HN: Nimbus - open-source AI agent that operates your AWS and GCP

https://github.com/hritvikgupta/nimbus
2•hritvik29•14h ago•1 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?