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 bydatabaseclear

Matches for "database"

38 repos
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
ant-design
ant-design

The B2B default in Asia. ~93k stars. Deep, enterprise-grade component set — tables, forms, dates, charts all included. Visually distinctive (and dated to some eyes). Strong choice for admin panels but…

UI ComponentsDesign Systems
You are building enterprise admin panels, data-heavy dashboards, or SaaS for Chinese/SEA markets.
You are building consumer-facing products — the look is too enterprise.
ant-design/ant-designView
motiondivision
motion

Formerly Framer Motion. The default React animation library in 2026. Declarative, gesture support, layout animations, scroll, presence. ~31k stars and 3.6M weekly downloads. Trusted by Framer and Figm…

Animation & Motion
You are doing any non-trivial React animation — page transitions, gestures, layout animations.
You are doing only static fades — CSS transitions are enough and ship zero JS.
motiondivision/motionView
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
chroma-core
chroma

AI-native embedding database designed for rapid prototyping. Easy to run locally, tight LangChain integration. Better for hackathons and internal tools than huge production deployments.

AI & MLDatabase & ORM
You are prototyping RAG, building an internal tool, or bundling a vector DB into a desktop/local app.
You expect millions of vectors in production — look at Qdrant, Weaviate, or pgvector.
chroma-core/chromaView
pgvector
pgvector

Vector search inside Postgres. ~12k stars and dominant in 2026 as the boring-but-correct default. If you already have Postgres (Supabase, Neon, RDS), do not add another database — just install this ex…

AI & MLDatabase & ORM
You are already on Postgres and want vector search without operating a second database.
You need billion-scale vector search with millisecond latency — a dedicated vector DB is worth the operational cost.
pgvector/pgvectorView
milvus-io
milvus

Open-source vector DB with the most mature features for huge scale. ~30k stars. Steeper operational burden than Qdrant. Used in production by companies doing serious vector workloads.

AI & MLDatabase & ORM
You are running vector search at extreme scale with a team that can operate distributed systems.
You are a small team — Qdrant or pgvector will be enough and easier to run.
milvus-io/milvusView
weaviate
weaviate

Vector DB with strong hybrid search (vector + keyword) and built-in modules for common embedding workflows. Slightly higher learning curve than Qdrant but powerful for production RAG.

AI & MLDatabase & ORM
You need hybrid keyword + vector search and want it built in rather than bolted on.
You only need pure vector search — Qdrant is simpler.
weaviate/weaviateView
better-auth
better-auth

The most flexible modern auth library for TypeScript stacks in 2026. Plugin ecosystem for 2FA, phone OTP, organization roles, audit logs. Same code works with Next.js, TanStack Start, Express. Becomin…

Authentication
You are starting a full-stack TypeScript app and want long-term scalability with full control over auth flows.
You want a fully managed auth platform with no ops — use WorkOS or Auth0.
better-auth/better-authView
keycloak
keycloak

Enterprise auth/IAM platform. ~24k stars. Java-based, self-hosted, supports SAML, OIDC, fine-grained authorization. Heavy to operate but the right pick for compliance-heavy enterprise apps.

Authentication
You are doing enterprise SSO with SAML/OIDC and need self-hosting for compliance reasons.
You are a small team or a B2C product — way too much complexity.
keycloak/keycloakView
supabase
supabase

Postgres + Auth + Storage + Realtime + Edge Functions in one open-source platform. ~73k stars. The fastest way to ship a backend in 2026 for solo founders and small teams. Mumbai region for India late…

Database & ORMAuthentication
You are a solo founder or small team shipping a SaaS or mobile app and want one backend service.
You need NoSQL specifically, or your team has strong DevOps and wants raw Postgres.
supabase/supabaseView
drizzle-team
drizzle-orm

TypeScript-first ORM with SQL-like syntax. ~25k stars. Lighter than Prisma, zero codegen step, faster cold starts on serverless. Becoming the default for new Next.js + Postgres projects.

Database & ORM
You are on Postgres/MySQL/SQLite, write TypeScript, and want SQL-like queries with type safety.
Your team prefers a high-level ORM with relations resolved magically — Prisma is more polished.
drizzle-team/drizzle-ormView
prisma
prisma

The polished ORM. ~38k stars. Best developer experience for relational data, declarative schema, generated client. Trade-off: cold starts on serverless are slower than Drizzle, and the abstraction can…

Database & ORM
Your team values DX over performance and most queries are CRUD on relational data.
You are running on Edge or Vercel functions where cold start matters — Drizzle is faster.
prisma/prismaView
typeorm
typeorm

Decorator-based ORM, used heavily in NestJS ecosystem. Battle-tested but development pace has slowed. Drizzle and Prisma are the newer defaults for greenfield projects.

Database & ORM
You are on NestJS where TypeORM is the expected default.
You are starting a new project — pick Drizzle or Prisma.
typeorm/typeormView
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
kysely-org
kysely

Type-safe SQL query builder for TypeScript. Lower level than Drizzle/Prisma — closer to writing raw SQL with types. Best when you really want to think in SQL.

Database & ORM
You write complex SQL and want type safety without an ORM abstraction.
You want schema migration tooling and a managed query layer — pick Drizzle.
kysely-org/kyselyView
edgedb
edgedb

Graph-relational database with EdgeQL. Beautiful query language, strong types, very opinionated. Smaller ecosystem so harder to hire for.

Database & ORM
You are a small founding team that loves typed query languages and is okay with smaller community.
You need to hire developers fast or integrate with the broader Postgres ecosystem.
edgedb/edgedbView
colinhacks
zod

TypeScript-first schema validation. ~35k stars. The de facto choice for input validation in TS apps. Works with every form library, every API framework, every ORM. If you are not using it yet, you sho

Locked
Unlock with ₹99 lifetime
Unlock
react-hook-form
react-hook-form

The fastest, smallest form library for React. ~39k stars. Uncontrolled by default so re-renders stay minimal. Pairs naturally with Zod for validation. Default choice for any React form heavier than a

Locked
Unlock with ₹99 lifetime
Unlock
TanStack
form

New TanStack entry, framework-agnostic forms. Headless, type-safe, supports React/Vue/Solid. Worth watching but React Hook Form is more mature today.

Locked
Unlock with ₹99 lifetime
Unlock
jquense
yup

Schema validation predating Zod. Still works fine but Zod has better TypeScript inference. New projects should pick Zod.

Locked
Unlock with ₹99 lifetime
Unlock
final-form
final-form

Form state library, framework-agnostic. React Final Form was popular pre-React Hook Form. Less active today.

Locked
Unlock with ₹99 lifetime
Unlock
TanStack
query

The #1-rated tool in the React 2025 survey. Async state management — fetching, caching, syncing server state. Not a state library exactly but solves what most React apps actually needed Redux for. Def

Locked
Unlock with ₹99 lifetime
Unlock
statelyai
xstate

Actor-based state machines. ~27k stars. Overkill for most apps but unbeatable for genuinely complex workflows — multi-step forms, async retries with rollback, real-time collaboration. Worth learning e

Locked
Unlock with ₹99 lifetime
Unlock
remix-run
react-router

The default React router. ~53k stars. v7 merged Remix into React Router so it now also does data loading and form actions. Best choice for React SPAs and SSR apps not on Next.js.

Locked
Unlock with ₹99 lifetime
Unlock
solidjs
solid

JSX with fine-grained reactivity instead of VDOM. ~33k stars. Closer to Svelte's mental model with React's syntax. Smaller community but excellent performance.

Locked
Unlock with ₹99 lifetime
Unlock
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

Locked
Unlock with ₹99 lifetime
Unlock
facebook
react-native

The cross-platform mobile framework. ~120k stars. Most people use it through Expo now. New Architecture (Fabric + TurboModules) shipped widely and improved performance significantly.

Locked
Unlock with ₹99 lifetime
Unlock
tamagui
tamagui

Universal UI for React Native + web. Compile-time style extraction means near-native performance. The best option in 2026 for genuinely sharing UI code across web and mobile.

Locked
Unlock with ₹99 lifetime
Unlock
directus
directus

Headless CMS layered on top of any SQL database. ~28k stars. Strong when you have an existing database and want a no-code admin UI bolted on.

Locked
Unlock with ₹99 lifetime
Unlock
TanStack
db

New 2026 entry from TanStack — local-first reactive DB for offline-capable apps. Worth watching but ecosystem is still young.

Locked
Unlock with ₹99 lifetime
Unlock
PostHog
posthog

Open-source product analytics. ~21k stars. Self-hostable or managed. Combines analytics, session replay, feature flags, A/B testing in one platform. Generous free tier — most early-stage products neve

Locked
Unlock with ₹99 lifetime
Unlock
umami-software
umami

Self-hosted Plausible alternative. ~22k stars. Free if you can run a Node process and a Postgres database.

Locked
Unlock with ₹99 lifetime
Unlock
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.

Locked
Unlock with ₹99 lifetime
Unlock
docker
compose

Define multi-container apps in a single YAML file. Still the simplest way to run a local dev environment with multiple services (DB, cache, app, worker).

Locked
Unlock with ₹99 lifetime
Unlock
biomejs
biome

Fast Rust-based formatter + linter. ~15k stars. Replaces Prettier + ESLint with one tool. Adoption is rising; ESLint plugin ecosystem is still wider for now.

Locked
Unlock with ₹99 lifetime
Unlock
turbo-build
turbo

Monorepo build orchestrator from Vercel. ~26k stars. Speeds up large monorepos with caching. Overkill for small projects but transformative for big ones.

Locked
Unlock with ₹99 lifetime
Unlock
20 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