A native macOS sticky note app with Obsidian-style markdown live preview, built with Swift and CodeMirror 6.
- Live Preview: Obsidian-style WYSIWYG editing with instant rendering
- GFM Support: Tables, strikethrough, task lists, and more
- Syntax Highlighting: 15+ programming languages in code blocks
- Math Rendering: KaTeX support for inline (
$...$) and block ($$...$$) equations
- Floating Windows: Always visible while you work
- Pin on Top: Keep important notes above all windows (Cmd+Shift+P)
- Multiple Colors: Yellow, pink, blue, green, purple, orange
- Adjustable Opacity: Transparency slider for each note
- Auto-Save: Never lose your notes
| Shortcut | Action |
|---|---|
| Cmd+N | New note |
| Cmd+Shift+P | Pin on top |
| Cmd+B / I / K | Bold / Italic / Link |
| Cmd+F | Find in note |
| Cmd+Shift+F | Find and replace |
| Cmd+` | Cycle through notes |
brew tap jaesuny/tap
brew install --cask md-sticky-notesIf you don't use Homebrew, you can download the DMG directly. Note that manual installation requires extra steps to bypass macOS Gatekeeper.
- Download
MDStickyNotes.dmg - Open the DMG and drag the app to Applications
- First launch — macOS will block the app since it is not notarized. To allow it:
- Double-click the app — macOS will show a warning and block it
- Open System Settings (시스템 설정)
- Go to Privacy & Security (개인정보 보호 및 보안)
- Scroll down to find the message about "StickyNotes" being blocked
- Click "Open Anyway" (확인 없이 열기)
- Click "Open" (열기) in the confirmation dialog
- After the first launch, you can open it normally
Disclaimer: This app is not notarized by Apple. By downloading and running this app, you acknowledge that you do so at your own risk. The developer assumes no liability for any issues that may arise from its use.
# Prerequisites: macOS 12+, Swift 5.9+, Node.js 18+
# Clone and build
git clone https://github.com/jaesuny/markdown-sticky-notes.git
cd markdown-sticky-notes
cd editor-web && npm install && cd ..
./build-app.sh
# Run
open build/StickyNotes.appdemo.mp4
- Swift/SwiftUI: Native macOS app shell with NSPanel windows
- WKWebView + CodeMirror 6: High-performance markdown editor
- KaTeX: Fast LaTeX math rendering
- Hybrid Approach: Native performance with battle-tested web editor
- Pure native markdown editors require months of TextKit work
- Electron is too resource-heavy
- WKWebView is built into macOS with zero external dependencies
- CodeMirror 6 is the most advanced web editor available
# Full rebuild (Swift + JS)
./build-app.sh && open build/StickyNotes.app
# JS-only fast iteration
cd editor-web && npm run build && \
cp dist/editor.bundle.js ../build/StickyNotes.app/Contents/Resources/Editor/ && \
open ../build/StickyNotes.appMIT
- Built with Claude Code
- Editor powered by CodeMirror 6
- Math rendering by KaTeX
