remix
Installation
SKILL.md
Remix
Remix is a full-stack web framework that focuses on web standards (Fetch API, Forms). In 2025, it has largely converged with React Router 7, offering a "Vite-native" experience.
When to Use
- Data-Heavy Apps: Excellent handling of nested data loading and parallel fetching.
- Web Standards: If you like standard
<form>andFormDataover complex RPC layers. - Optimistic UI: Built-in support for optimistic UI makes apps feel instant.
Quick Start (Loader/Action)
import { json } from "@remix-run/node";
import { useLoaderData, Form } from "@remix-run/react";