Skip to content
RR

RR Grenadine

A focused React Router starter

Showcase

Loader route

A request inspector for the server runtime.

This route turns the request into something you can read quickly: what arrived, what the database said, and how to hit the API yourself.

Request summary
Values captured during server rendering.
GET
FieldValue
MethodGET
Hostrr.grenadine.email
Pathname/showcase
Protocolhttp
Rendered at2026-03-18T00:59:10.333Z
Database notes6
How to exercise it
Simple curl calls that match the API routes in this template.

GET collection

curl https://rr.grenadine.email/api/notes

POST create

curl -X POST https://rr.grenadine.email/api/notes \
  -H 'content-type: application/json' \
  -d '{"title":"Deploy","note":"The API accepted the note."}'

Response shape

The loader returns the request summary plus the live note count, and the API routes return a `note` object when a resource is found.

User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)