### Create a New Framer Plugin Source: https://www.framer.com/developers/plugins-quick-start Use this command to initiate a new Framer Plugin project. It guides you through the setup process and creates a basic plugin structure. ```bash npm create framer-plugin@latest ``` -------------------------------- ### Run Plugin Development Server Source: https://www.framer.com/developers/plugins-quick-start Navigate to your plugin's directory and run this command to start the development server. This command is essential for developing your plugin and allows Framer to pick it up automatically. ```bash npm run dev ``` -------------------------------- ### Install Plugin Package Manually Source: https://www.framer.com/developers/plugins-quick-start Install the `@framer/plugin` package directly into an existing project. Note that this method is not officially supported. ```bash npm install @framer/plugin ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.