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 byframeworkclear

Matches for "framework"

26 repos
shadcn-ui
ui

The default for Next.js builders in 2026. Not a dependency — you copy components into your codebase and own them forever. Built on Radix primitives so accessibility is solid out of the box. The catch:…

UI ComponentsDesign Systems
You are on Next.js or Vite + React with Tailwind, you want full control over component code, and you do not mind some manual maintenance.
You need Material Design specifically, you want automatic library upgrades, or you are not on Tailwind.
shadcn-ui/uiView
nextui-org
nextui

Modern visual style, animations baked in, built on Tailwind. ~22k stars. Slightly more opinionated than shadcn but ships pre-styled. Recently rebranded — check the latest docs.

UI Components
You want modern visuals without writing the design yourself and you are okay with their aesthetic.
You need a fully custom design or already invested in shadcn ecosystem.
nextui-org/nextuiView
arco-design
arco-design

ByteDance enterprise design system. Cleaner aesthetics than Ant Design, deep component library, growing presence outside China. Solid pick for enterprise tooling where you want a more modern visual ba…

UI ComponentsDesign Systems
You like Ant Design but want a more modern visual style.
You are building consumer products or expect long-term English-language community support — Chinese-language docs dominate.
arco-design/arco-designView
tailwindlabs
tailwindcss

The CSS framework that won. Utility-first, brutal on first sight, addictive after a week. ~83k stars. Pairs with literally every UI library that matters in 2026. Default expectation for new React/Vue/…

Design Systems
You are starting any new web project in 2026 — yes, even this one.
You are in a CSS Modules / styled-components codebase and the team is happy. Do not migrate for migration sake.
tailwindlabs/tailwindcssView
greensock
GSAP

The industry standard for advanced web animation since forever. Framework-agnostic — works with React, Vue, vanilla JS, anywhere. Strongest tool for complex timelines, scroll-driven animation, and SVG…

Animation & Motion
You are building marketing sites with award-show-worthy animation, complex scroll narratives, or SVG art.
You are doing standard React UI animation — Motion is more idiomatic.
greensock/GSAPView
juliangarnier
anime

Lightweight JavaScript animation engine. ~66k stars. Great for SVG and DOM animation without React-specific bindings. Smaller community than GSAP, but the API is approachable and the bundle is tiny.

Animation & Motion
You want a small, framework-agnostic animation library for marketing sites or vanilla JS projects.
You are in React — Motion is more idiomatic, similar bundle size, larger community.
juliangarnier/animeView
langchain-ai
langchain

The biggest LLM framework. Chains, agents, RAG pipelines, integrations with every model, vector DB, and tool. Strong ecosystem with LangGraph for agentic workflows. The criticism: for simple use cases…

AI & ML
You are building multi-step AI pipelines (agents, complex RAG, tool use) and need the ecosystem.
You are just calling an LLM API and processing the response — use the native SDK directly.
langchain-ai/langchainView
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
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
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
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
medusajs
medusa

Open-source headless commerce. ~25k stars. Strong alternative to Shopify for teams that want full control over their commerce backend. Solid plugin ecosystem.

Payments & Billing
You are building custom e-commerce and Shopify's opinions are getting in your way.
You just need a store — Shopify will be faster.
medusajs/medusaView
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…

Forms & ValidationFrameworks
You are writing TypeScript and validating any input — forms, API requests, env vars, anything.
You are not on TypeScript or you are deep in a Yup codebase that works fine.
colinhacks/zodView
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.

Forms & Validation
You want a framework-agnostic form library and you are early enough to bet on a younger tool.
You need maturity and community size — React Hook Form is safer.
TanStack/formView
final-form
final-form

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

Forms & Validation
You are maintaining an existing Final Form codebase.
You are starting new — React Hook Form has won.
final-form/final-formView
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…

State ManagementDatabase & ORM
You are fetching data from any API in React. Yes, you need this.
You are on Next.js App Router with mostly server components — fetch directly on the server.
TanStack/queryView
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.

Routing
You are building a React SPA or non-Next.js SSR app — this is the default.
You are on Next.js or TanStack Start — they have their own routers.
remix-run/react-routerView
TanStack
router

Type-safe router with first-class search-param handling. The router that powers TanStack Start. Stronger types than React Router but newer ecosystem.

Routing
You want truly typed routes and search params, especially in SPAs without Next.js.
You need maturity and community size — React Router is safer.
TanStack/routerView
vercel
next.js

The React framework. ~128k stars. App Router is the bet — server components, server actions, edge runtime. 2026 sentiment is mixed: people love the capabilities, complain about the complexity. Still t

Locked
Unlock with ₹99 lifetime
Unlock
vitejs
vite

The build tool that won. ~71k stars. Dev server is instant, build is fast, plugin ecosystem is rich. Default for most non-Next.js React/Vue/Svelte projects in 2026.

Locked
Unlock with ₹99 lifetime
Unlock
withastro
astro

Content-first framework with islands architecture. ~47k stars. Ships minimal JS, multi-framework component support (React + Vue + Svelte in one project). Best choice for content-heavy sites where Next

Locked
Unlock with ₹99 lifetime
Unlock
sveltejs
kit

Svelte's Next.js. ~19k stars. Smaller community than React but the DX is genuinely better and runtime bundles are smaller. Worth considering for greenfield projects where team training is feasible.

Locked
Unlock with ₹99 lifetime
Unlock
nuxt
nuxt

Vue's Next.js. ~56k stars. Mature, great DX, strong ecosystem. The default for Vue apps that need SSR and SEO.

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
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
facebook
lexical

Meta's extensible text editor framework. Used in Facebook and Instagram. More framework-y than Tiptap, steeper learning curve, more powerful for complex editors.

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