stackpicks.dev
Preview mode — 111 repos, zero database

The open-source stack,
curated by builders.

Tell us what you're building or what you need. We'll surface the right repo, with an honest take on whether to use it.

Or paste a GitHub repo — owner/repo — to preview it live.

Filtered bygoclear

Matches for "go"

20 repos
chakra-ui
chakra-ui

Composable component library with strong defaults and a great theming system. ~38k stars. Sits between Material UI (too opinionated) and shadcn (too DIY). Good developer experience and accessibility —…

UI ComponentsDesign Systems
You want batteries-included components with clean visuals and a sensible theming API.
You need cutting-edge features — release cadence has slowed and momentum has shifted to shadcn/Base UI.
chakra-ui/chakra-uiView
mantinedev
mantine

100+ components and 50+ hooks. ~26k stars. Particularly strong on form handling and date pickers. Less hyped than shadcn but mature, well-documented, and just works. Good fit for SaaS dashboards.

UI ComponentsForms & Validation
You want a comprehensive React component library with excellent forms and hooks out of the box.
You want copy-paste ownership of component code — Mantine is a traditional dependency.
mantinedev/mantineView
tailwindlabs
headlessui

Unstyled, accessible components from the Tailwind team. Smaller surface than Radix but tighter integration with Tailwind ecosystem. Good for simple custom design systems where you do not need Radix-le…

UI Components
You are on Tailwind and need a few accessible primitives (dialog, menu, listbox) without bringing in Radix.
You need a full set of primitives or community-maintained components — Radix has more.
tailwindlabs/headlessuiView
lucide-icons
lucide

The icon set shadcn ships with. Clean, consistent stroke, ~1,400 icons, MIT licensed. ~13k stars. Better designed than Feather (which it forked from), better licensed than Heroicons in some setups.

Design SystemsIcons & Illustrations
You want a single, modern, well-licensed icon library that covers most product needs.
You need brand logos (use simple-icons) or filled iconography (use Phosphor or Tabler).
lucide-icons/lucideView
mojs
mojs

Motion graphics for the web — built for animated UI flourishes. Smaller community than Motion or GSAP but produces distinctive, polished microinteractions out of the box.

Animation & Motion
You want delightful microinteractions (toast pops, button effects, confetti) and want them to look good without tuning.
You need the full timeline/scroll control of GSAP or the React integration of Motion.
mojs/mojsView
aceternity
ui

Premium-feeling animated components for landing pages. Free core + paid pro. Useful as a reference even if you do not use the components directly — the source shows good Motion patterns.

Animation & MotionUI Components
You are shipping a SaaS landing page and want premium-feeling motion without a designer.
You need consistent product UI components — these are landing-page flair, not a design system.
aceternity/uiView
microsoft
autogen

Multi-agent conversation framework from Microsoft. Stronger than LangChain for genuinely autonomous multi-agent setups where agents negotiate with each other. Younger ecosystem, fewer integrations.

AI & ML
You are building experimental multi-agent systems where agents collaborate or debate.
You just want a single agent or a simple chatbot — overkill.
microsoft/autogenView
qdrant
qdrant

Rust-based vector database — fast, production-grade, Apache 2.0. Good developer experience and clear pricing if you use their managed cloud. Strong choice if Postgres+pgvector cannot handle your scale…

AI & MLDatabase & ORM
You need production-grade vector search at scale and Postgres is hitting limits.
You are starting fresh on Postgres — pgvector is enough for most apps.
qdrant/qdrantView
nextauthjs
next-auth

The OG Next.js auth library, now Auth.js. ~24k stars. Quick to add OAuth providers (80+ preconfigured). Best for fast MVP work where you mostly need social login. Less flexible than Better Auth for ad…

Authentication
You are shipping a Next.js MVP fast and need social login (Google, GitHub) working in an hour.
You need fine-grained control over sessions, multi-tenant logic, or organization roles — pick Better Auth.
nextauthjs/next-authView
supertokens
supertokens-core

Self-hostable auth backend with managed cloud option. Full session management, user management dashboard, multi-tenancy. Good middle ground between rolling your own and using a SaaS like Auth0.

Authentication
You want full control over auth data, self-hosting capability, and a working admin dashboard.
You want zero ops — managed providers will be less work.
supertokens/supertokens-coreView
planetscale
database-js

Serverless-first MySQL client. Good when you are on PlanetScale specifically. Works well with Drizzle as the driver.

Database & ORM
You are on PlanetScale or another Vitess-based MySQL service.
You are not on PlanetScale — pick a database first.
planetscale/database-jsView
pocketbase
pocketbase

Single-file Go backend with SQLite, auth, file storage, realtime. ~40k stars. Pocket-sized Supabase alternative. Great for indie projects, prototypes, and self-hosted internal tools.

Database & ORMAuthentication
You want a single binary you can drop on a VPS for an indie project, prototype, or internal tool.
You are scaling past ~10k users or need Postgres-specific features.
pocketbase/pocketbaseView
getlago
lago

Open-source billing/metering for usage-based pricing. Self-hostable or managed. Lighter than Stripe Billing for pure metering use cases.

Payments & Billing
You are doing usage-based pricing (API credits, tokens, seats) and want billing infra you can own.
You are doing simple monthly subscriptions — Stripe Billing or Razorpay subscriptions are easier.
getlago/lagoView
expo
expo

The way to build React Native in 2026. ~32k stars. Managed workflow that handles native builds (EAS), updates (OTA), and routing (Expo Router). Default for cross-platform mobile unless you have hard n…

Mobile
You are building an iOS + Android app and your team writes React.
You need deep platform-specific features (Apple Watch, complex AR) — go fully native.
expo/expoView
plausible
analytics

Lightweight, privacy-friendly Google Analytics alternative. Cookie-less, GDPR/DPDP-friendly. Self-host or use their managed service from ₹720/year.

Analytics
You want simple traffic analytics without privacy headaches or 50MB scripts.
You need funnel analysis, session replay, or product event tracking — PostHog is the better fit.
plausible/analyticsView
meilisearch
meilisearch

Fast, typo-tolerant search engine in Rust. ~48k stars. Easiest search engine to operate — single binary, sensible defaults, great DX. Good middle ground between Postgres full-text and Elasticsearch.

Search
You need user-facing search on a product catalog, docs site, or app.
You need extreme scale or complex aggregations — Elasticsearch still wins.
meilisearch/meilisearchView
BlockNote
BlockNote

Notion-style block editor built on Tiptap. Higher abstraction — drop it in and get a Notion-clone editor without configuring blocks yourself.

Rich Text & Editors
You want a Notion-like editor immediately and do not care about deep customization.
You need custom blocks and behaviors — go one layer down to Tiptap directly.
BlockNote/BlockNoteView
coollabsio
coolify

Self-hosted Heroku/Vercel alternative. ~30k stars. Deploy from Git to your own VPS. Good for indie devs avoiding Vercel costs at scale.

DevOps & Deploy
You want Vercel-like DX on your own VPS and you are okay running infrastructure.
You are early-stage — Vercel/Netlify free tiers are easier and faster.
coollabsio/coolifyView
puppeteer
puppeteer

Chrome-only browser automation from Google. Slightly more raw than Playwright with fewer batteries included, but lighter weight and battle-tested on Chrome quirks. The choice when Playwright's multi-b

Locked
Unlock with ₹99 lifetime
Unlock
gocolly
colly

Go's answer to Scrapy. Built-in rate limiting, caching, parallelism, and storage backends. Compiles to a single binary which makes deployment to a cheap VPS trivial. Use when you want to scrape millio

Locked
Unlock with ₹99 lifetime
Unlock
2 more repos locked

Unlock the whole directory.

One-time ₹99 ( $1.99 intl). Lifetime access to every curator take, every bundle, every weekly deep-dive. No renewals.

Unlock for ₹99 lifetime
Don't see what you need?

We'll add it in 60 minutes.

Tell us what tool or use case is missing. We'll research the best repo for it, write an honest take, add it to the directory, and email you the link. No paywall, no signup required.

We respond in under 60 minutes during business hours (10:00–18:00 IST).

Preview — the curated 104 — StackPicks