Getting-Started Pages
Overview
Use a getting-started page when the reader is new to Mississippi and needs one verified path to first success.
Assume the reader is already a professional developer. The goal is not to teach every concept; the goal is to get them safely to a working result and then point them to deeper material.
The primary reader question is: "How do I get to one verified first success with the least amount of setup and theory?"
Use This Page Type When
- the reader is new to Mississippi
- the page should optimize for a shortest verified happy path
- the page should avoid branches, options, and production complexity
Required Structure
- one-sentence outcome statement
## What you will buildor## What you will achieve## Prerequisites## Install## Create the projector## Run the sample## Verify it works## What happened## Summary## Next Steps
Content Rules
- Prefer a known-good sample when one exists.
- Prefer local defaults over production infrastructure.
- Use one happy path.
- Explain only the minimum theory needed to keep the reader safe.
- Link to concept pages instead of embedding deep explanation.
Verification Rules
- Every command must be executable as written.
- Every expected result must come from an actual run.
- If setup differs by OS, use tabs.
- If external infrastructure is required, provide the lowest-friction verified option.
Minimal Frontmatter Example
---
title: Build Your First Reservoir Feature
description: Create and verify a minimal Reservoir feature so you can see Mississippi state management working end to end.
sidebar_position: 10
sidebar_label: First Reservoir Feature
---
Page Skeleton Example
# Build Your First Reservoir Feature
Create a minimal Reservoir feature and verify that actions update state in a running app.
## What you will build
## Prerequisites
## Install
## Create the project
## Verify it works
## What happened
## Summary
## Next Steps
Summary
- getting-started pages optimize for one verified first success
- they minimize branches, production complexity, and deep theory
- they should hand readers off to tutorials, concepts, and reference once the first result works