August 30, 2026
Markdown Notes CLI
A tiny command-line tool for turning a folder of Markdown notes into a searchable static index.
- typescript
- cli
A small experiment in local-first tooling: point it at a directory of Markdown files and it emits a single static HTML index with client-side search.
What it does
- Walks a notes directory for
.mdfiles. - Extracts titles and headings.
- Emits a static index with a tiny search script.
notes build ./vault --out ./dist
The whole thing stays under a few hundred lines of TypeScript, with no runtime dependencies for the generated output.