remix-v2-data-flow

Installation
SKILL.md

Remix v2 Data Flow

Quick Reference

Loader + typed read:

import { json, type LoaderFunctionArgs } from "@remix-run/node";
import { useLoaderData } from "@remix-run/react";

export async function loader({ request }: LoaderFunctionArgs) {
  const invoices = await db.invoice.findMany();
  return json({ invoices });
}
Installs
21
GitHub Stars
68
First Seen
May 15, 2026
remix-v2-data-flow — existential-birds/beagle