Phase 03
- app-router
- server-vs-…
- data-fetch…
- route-handlers
- server-actions
- prisma
- auth.js
// app/api/notes/route.ts
export async function GET() {
const notes = await db.note.findMany();
return Response.json(notes);
}
ANALOGYA route handler is one counter at the post office that knows one job.