FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Remix v2 Has a Free Framework: Full-Stack Web Apps with Nested Routes and Server-Side Data Loading
How-ToWeb Development

Remix v2 Has a Free Framework: Full-Stack Web Apps with Nested Routes and Server-Side Data Loading

via Dev.to ReactAlex Spinov4h ago

Why Remix v2? Remix v2 is a full-stack web framework built on React Router that embraces web standards. Nested routes, server-side loaders, and progressive enhancement make it a serious alternative to Next.js - especially when you want your app to work even without JavaScript. Quick Start npx create-remix@latest my-app cd my-app npm run dev Loaders: Server-Side Data Fetching // app/routes/posts.tsx import type { LoaderFunctionArgs } from ' @remix-run/node ' ; import { json } from ' @remix-run/node ' ; import { useLoaderData } from ' @remix-run/react ' ; export async function loader ({ request }: LoaderFunctionArgs ) { const url = new URL ( request . url ); const query = url . searchParams . get ( ' q ' ) || '' ; const posts = await db . posts . findMany ({ where : { title : { contains : query } }, orderBy : { createdAt : ' desc ' }, take : 20 , }); return json ({ posts , query }); } export default function Posts () { const { posts , query } = useLoaderData < typeof loader > (); return

Continue reading on Dev.to React

Opens in a new tab

Read Full Article
5 views

Related Articles

LeetCode Solution: 121. Best Time to Buy and Sell Stock
How-To

LeetCode Solution: 121. Best Time to Buy and Sell Stock

Dev.to Tutorial • 3h ago

The Feature Took 2 Hours to Build — and 2 Weeks to Fix
How-To

The Feature Took 2 Hours to Build — and 2 Weeks to Fix

Medium Programming • 4h ago

Blog 15: SDLC Phase 4 — Testing
How-To

Blog 15: SDLC Phase 4 — Testing

Medium Programming • 5h ago

Before We Write a Single Data Structure, We Need to Talk
How-To

Before We Write a Single Data Structure, We Need to Talk

Medium Programming • 6h ago

How-To

How to implement the Outbox pattern in Go and Postgres

Lobsters • 7h ago

Discover More Articles