Remix preview
remix

Remix

Full-stack web framework with web standards

32.6k|alpha|static-middleware@0.4.5
import { createRequestHandler } from 'remix'; const handler = createRequestHandler({ build: () => import('./build.server'), }); export default handler;
Composable packages — Use individual packages independently or the unified remix package for full integration.
Runtime-first design — All code runs without static analysis; designed for LLM optimization and composition.
Multi-runtime support — Works across Node.js, Bun, Deno, Cloudflare Workers using standard Web APIs.
Built-in middleware — Authentication, CORS, compression, sessions, and CSRF protection included.
Data layer toolkit — Query builder with adapters for MySQL, PostgreSQL, and SQLite databases.
Remix 3 is a ground-up redesign optimized for AI-assisted development and runtime portability. Every package follows single-responsibility principles and works standalone, making the framework highly modular and composable. Built entirely on Web APIs rather than Node.js-specific abstractions, your code stays portable across any JavaScript runtime.
Node.js, Bun, Deno, or compatible runtime
Source on GitHub
pavilion