Skip to main content

The 20 Fastest-Growing npm Packages of 2026

·PkgPulse Team

TL;DR

The fastest-growing packages in 2026 share a pattern: Rust-based speed, TypeScript-first APIs, and server-side rendering support. Biome, Oxc, Bun's npm client, Hono, Drizzle, and Conform all grew 100%+ year-over-year. These aren't new packages getting initial hype — they're packages that went from niche to mainstream. The common thread: they replace slow JavaScript tools with fast Rust implementations, or they make server-first patterns ergonomic.

Key Takeaways

  • Rust-based tools (Biome, Oxc, SWC, Rspack) growing fastest in tooling category
  • Server-first packages (Hono, Conform, Drizzle) growing with Next.js/RSC adoption
  • Bundle size wins driving migrations (Zod → Valibot, Moment → date-fns)
  • Downloads ≠ hype — these packages are growing on real project migrations
  • AI tooling is the newest fast-growing category (OpenAI SDK, Anthropic SDK, Vercel AI)

#1–5: Tooling Revolution

1. Biome — 280% YoY Growth

# Replaces: ESLint + Prettier
# Why growing: 25x faster, one tool instead of two, zero config
npm install -D @biomejs/biome

# Weekly downloads: ~900K (from ~240K a year ago)
# Key milestone: shadcn/ui switched to Biome in 2025
# Signal: "biome migrate eslint" command made migration trivial

2. Oxc — 340% YoY Growth (from smaller base)

# Oxc: Oxidation Compiler — Rust-based JS toolchain
# Components: parser, linter, resolver, transformer, minifier
npm install -D oxc-transform

# Still early-stage but adoption accelerating fast
# Used by: Rolldown (Rust-based Rollup replacement), Vite internals
# Signal: Vite announced migrating core to Rolldown/Oxc in 2025

3. Rspack — 220% YoY Growth

# Replaces: Webpack (drop-in compatible)
# Why growing: webpack.config.js works unchanged, 5-10x faster builds
npm install -D @rspack/core @rspack/cli

# Weekly downloads: ~400K (from ~125K)
# Used by Bytedance (creators) and BytePlus products
# Rsbuild: higher-level config tool built on Rspack, growing even faster

4. Bun Runtime — 180% YoY Growth

# Not just a runtime — bun install is npm-compatible and 3x faster
curl -fsSL https://bun.sh/install | bash
bun install  # Drop-in for npm install

# Weekly installs: hard to measure (runtime metric ≠ npm metric)
# Signal: many CI configs now do: curl bun | bash && bun install
# Fastest growing use case: running Next.js apps on Bun runtime

5. Rolldown — New in 2026, Rapid Growth

# Rust-based Rollup replacement — same API
# Built with Oxc as the parser
npm install -D rolldown

# Not yet in Vite core but in active integration
# Benchmark: 10x faster than Rollup on large codebases

#6–10: The Server-First Category

6. Hono — 195% YoY Growth

// Hono: ultra-fast web framework for edge/server
// Runs on: Cloudflare Workers, Bun, Deno, Node.js, Next.js
// npm install hono

import { Hono } from 'hono';
const app = new Hono();
app.get('/api/users', (c) => c.json({ users: [] }));

// Weekly downloads: ~2.5M (from ~850K)
// Driver: Cloudflare Workers adoption + Bun server growth
// Signal: used in production by Cloudflare, Vercel Edge Functions

7. Conform — 290% YoY Growth

// Form library built for React server actions
// npm install @conform-to/react @conform-to/zod

import { useForm } from '@conform-to/react';
// Works natively with: Next.js server actions, Remix actions
// Weekly downloads: ~400K (from ~100K)
// Driver: RSC + server actions adoption (Next.js 14/15)

8. Drizzle ORM — 220% YoY Growth

// TypeScript ORM: SQL-first, zero overhead
// npm install drizzle-orm drizzle-kit

import { drizzle } from 'drizzle-orm/neon-http';
// Weekly downloads: ~1.8M (from ~560K)
// Driver: T3 Stack adopting Drizzle over Prisma; serverless-friendly
// Signal: Vercel storage products recommend Drizzle in docs

9. Elysia — 310% YoY Growth

// Bun-native web framework, TypeScript end-to-end
// npm install elysia

import { Elysia } from 'elysia';
const app = new Elysia().get('/', () => 'Hello').listen(3000);
// Weekly downloads: ~300K (from ~72K)
// Driver: Bun adoption, Eden treaty for end-to-end types (like tRPC)

10. tRPC — 140% YoY Growth

// Type-safe APIs with zero code generation
// npm install @trpc/server @trpc/client @trpc/react-query @trpc/next

// Weekly downloads: ~3M (from ~1.25M)
// Now mainstream — T3 Stack + standard Next.js pattern
// Growing: tRPC v11 with RSC support, tRPC + Tanstack Router

#11–15: The Validation & Schema Category

11. Valibot — 480% YoY Growth (from small base)

// Zod alternative with modular design: only import what you use
// npm install valibot

import { object, string, email, minLength, parse } from 'valibot';
// Bundle size: ~1.5KB vs Zod's ~14KB (tree-shakeable)
// Weekly downloads: ~800K (from ~140K)
// Driver: bundle size concerns + same API feel as Zod

12. ArkType — 380% YoY Growth

// TypeScript-native validation: define schemas with TS syntax
// npm install arktype

import { type } from 'arktype';
const user = type({ name: 'string', age: 'number' });
// Fastest validator benchmark: 100x faster than Zod at runtime
// Weekly downloads: ~400K (from ~83K)

13. Effect — 260% YoY Growth

// Full-featured TypeScript framework: errors, concurrency, DI
// npm install effect

import { Effect } from 'effect';
// Not just validation — effect system for the full app
// Growing in enterprise TypeScript apps
// Weekly downloads: ~600K (from ~165K)

14. Zod v4 (if released in 2026) — expected significant growth

// Zod v4 rewrote core for performance
// npm install zod@next
// Expected: 3x faster than v3, smaller bundle, same API

#16–20: AI & Emerging

15. Vercel AI SDK — 420% YoY Growth

// npm install ai
import { streamText } from 'ai';
import { openai } from '@ai-sdk/openai';

// Works with: OpenAI, Anthropic, Google, Mistral, Ollama
// Unified streaming API across all providers
// Weekly downloads: ~1.2M (from ~230K)
// Driver: every team adding AI features reaches for this first

16. @anthropic-ai/sdk — 380% YoY Growth

npm install @anthropic-ai/sdk
# Weekly downloads: ~2.1M (from ~440K)
# Claude 3.5 Sonnet becoming dev favorite for code tasks

17. Tanstack Router — 290% YoY Growth

// npm install @tanstack/react-router
// Type-safe routing: routes defined in TypeScript, fully type-checked
// Weekly downloads: ~900K (from ~230K)
// Driver: React Router v7 migration pain → teams trying TanStack

18. Vitest — 175% YoY Growth

// npm install -D vitest
// Jest replacement: Vite-native, ESM native, 5x faster
// Weekly downloads: ~8M (from ~2.9M)
// Now the default test runner in: Astro, SvelteKit, Nuxt

19. Panda CSS — 340% YoY Growth

npm install -D @pandacss/dev
# Zero-runtime CSS-in-JS, design tokens, RSC compatible
# Weekly downloads: ~320K (from ~73K)
# Growing with RSC adoption — CSS-in-JS solutions that don't work in RSC are dying

20. @t3-oss/env-nextjs — 560% YoY Growth

// npm install @t3-oss/env-nextjs
import { createEnv } from '@t3-oss/env-nextjs';
// Type-safe environment variables for Next.js
// Weekly downloads: ~650K (from ~97K)
// Signal: T3 community influence, now used outside T3 Stack

The Growth Patterns

What drives fast growth in 2026:

1. Drop-in replacements with 5-10x performance improvement
   → Rspack replacing Webpack, Biome replacing ESLint+Prettier

2. First-class RSC/server actions support
   → Conform, Drizzle, Panda CSS, Hono

3. Sub-5KB bundle for utilities
   → Valibot, @t3-oss/env-nextjs, Hono

4. AI category emerging from zero
   → Vercel AI SDK, Anthropic SDK, OpenAI SDK v5

5. TypeScript-first (no @types/ needed)
   → All 20 packages ship native TypeScript types

Growth signal to watch:
→ PkgPulse download trend charts
→ npmtrends.com for head-to-head trends
→ State of JS survey category leaders

Track download trends and health scores for any npm package at PkgPulse.

Comments

Stay Updated

Get the latest package insights, npm trends, and tooling tips delivered to your inbox.