The smallest runnable meander project: one part, one source file, two annotations.
From this directory:
pnpm install -g @socketsecurity/meander
meander generate meander.config.json
meander serve meander.config.jsonOpen http://127.0.0.1:8080 - you should see an index page with
one part link, and the part page should show two prose cards
paired with the code from src/app.ts.
minimal/
├── meander.config.json ← one part, pointing at src/app.ts
├── src/
│ └── app.ts ← two block comments + two tiny functions
└── README.md ← this file
- Add a second file to
files:inmeander.config.jsonand watch meander stitch them together on the same part page. - Add a second part with its own
keywordsandobjective. - Peek at
example/consumer-build/for how to hook meander into a consumer's own build pipeline.