Production patterns for Obsidian plugin development using the Obsidian TypeScript API. Covers vault operations, workspace management, event handling, and UI components with proper lifecycle management.
For full implementation details and code examples, load:
references/implementation-guide.md
| Error | Cause | Solution |
|---|---|---|
null file reference |
File deleted between check and use | Always re-check with getAbstractFileByPath |
| Stale metadata cache | Cache not updated | Use this.app.metadataCache.on('changed') |
| Settings lost on update | Missing migration logic | Version settings, migrate on load |
| Memory leak | Unregistered events | Use this.registerEvent() always |
See Obsidian Sdk Patterns implementation details for output format specifications.
Basic usage: Apply obsidian sdk patterns to a standard project setup with default configuration options.
Advanced scenario: Customize obsidian sdk patterns for production environments with multiple constraints and team-specific requirements.