framer-common-errors

Featured

Diagnose and fix Framer common errors and exceptions. Use when encountering Framer errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "framer error", "fix framer", "framer not working", "debug framer".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Framer Common Errors ## Overview Diagnostic reference for common Framer plugin, component, and Server API errors with actionable fixes. ## Error Reference ### Plugin Not Appearing in Editor **Cause:** Dev server not running or plugin not registered. **Fix:** ```bash npm run dev # Start Vite dev server # Then in Framer: Plugins > Development > select your plugin ``` --- ### `framer is not defined` **Cause:** Calling `framer` API outside the Framer editor iframe context. **Fix:** The `framer` global from `framer-plugin` only works inside the editor. For server-side access, use `framer-api` package instead. ```typescript // Plugin (editor): import { framer } from 'framer-plugin'; // Server (headless): import { framer } from 'framer-api'; ``` --- ### Component Renders Blank on Canvas **Cause:** Runtime error in component code (swallowed by Framer). **Fix:** Open Framer's browser console (right-click > Inspect) and check for errors. Common causes: - Missing `export default` on component - Undefined props without defaults - Fetch errors from blocked CORS requests --- ### `addPropertyControls` Not Showing **Cause:** Called on wrong component or wrong import. **Fix:** ```tsx // Must import from 'framer', not 'framer-plugin' import { addPropertyControls, ControlType } from 'framer'; // Must be called AFTER the component definition export default function MyComponent(props) { /* ... */ } addPropertyControls(MyComponent, { /* ... */ }); ``` --- ### Code Override...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

framer-sdk-patterns

Apply production-ready Framer SDK patterns for TypeScript and Python. Use when implementing Framer integrations, refactoring SDK usage, or establishing team coding standards for Framer. Trigger with phrases like "framer SDK patterns", "framer best practices", "framer code patterns", "idiomatic framer".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-performance-tuning

Optimize Framer API performance with caching, batching, and connection pooling. Use when experiencing slow API responses, implementing caching strategies, or optimizing request throughput for Framer integrations. Trigger with phrases like "framer performance", "optimize framer", "framer latency", "framer caching", "framer slow", "framer batch".

2,266 Updated today
jeremylongshore
AI & Automation Solid

framer-upgrade-migration

Analyze, plan, and execute Framer SDK upgrades with breaking change detection. Use when upgrading Framer SDK versions, detecting deprecations, or migrating to new API versions. Trigger with phrases like "upgrade framer", "framer migration", "framer breaking changes", "update framer SDK", "analyze framer version".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-install-auth

Install and configure Framer SDK/CLI authentication. Use when setting up a new Framer integration, configuring API keys, or initializing Framer in your project. Trigger with phrases like "install framer", "setup framer", "framer auth", "configure framer API key".

2,266 Updated today
jeremylongshore
AI & Automation Featured

framer-hello-world

Create a minimal working Framer example. Use when starting a new Framer integration, testing your setup, or learning basic Framer API patterns. Trigger with phrases like "framer hello world", "framer example", "framer quick start", "simple framer code".

2,266 Updated today
jeremylongshore