A minimalist Markdown notepad. Write in Markdown, preview live, share with a link.
Type Markdown in the editor. Toggle between split view, editor-only, and preview-only. Every note gets a shareable URL.
- Split view (default) — edit on the left, live preview on the right
- Keyboard shortcuts —
Ctrl+Ssave,Ctrl+Nnew note,Ctrl+Pcycle views - Auto-save — saves as you type
- Light mode per panel — toggle each side independently
node server.jsOpen http://localhost:3000.
docker compose up -dThe image is published to ghcr.io/lklynet/meerkat on push to main.
docker pull ghcr.io/lklynet/meerkat:latest
docker run -d -p 3000:3000 -v ./data:/app/data ghcr.io/lklynet/meerkat:latest- Vanilla JavaScript frontend, no framework
- Node.js HTTP server, no framework
- SQLite via node:sqlite
- CodeMirror 5 for editing, marked.js + highlight.js for rendering
- ~3 KB of handwritten CSS
- Minimal Docker image (Alpine)
MIT