VSCode Extension
The ciderpress VS Code extension runs your dev server and shows a live preview inside the editor — no need to keep a terminal or browser tab open while you write.
Installation
Search for ciderpress in the VS Code extensions marketplace, or install from the command line:
The extension activates automatically when your workspace contains a ciderpress.config.{ts,mts,mjs,js,json} file.
Workflow
- Open the ciderpress view in the activity bar (the cider icon on the left rail).
- The dev server auto-starts the first time the view becomes visible (controlled by
ciderpress.server.autoStart, defaulttrue). - The Pages tree shows every page in your config. Click an entry to open the preview panel beside your editor.
- Open any markdown file tracked by ciderpress and the preview follows your cursor — switching files navigates the preview to the matching page.
The extension manages its own dev server. You don't need to run ciderpress dev in a separate terminal.
Commands
All nine commands are registered under the ciderpress: prefix and available from the command palette (Cmd+Shift+P / Ctrl+Shift+P).
Settings
Configure via VS Code settings (Cmd+, / Ctrl+,) under the ciderpress namespace.
Requirements
- A ciderpress project with a
ciderpress.config.{ts,mts,mjs,js,json}file at the workspace root. - VS Code
^1.115.0.
References
- Quick Start — set up your first ciderpress project
- CLI reference — dev — the same dev server, from the command line
- Configuration — full
ciderpress.config.tsschema