This guide walks you through the steps to create a plugin for our platform. You'll start by setting up the basic structure, configuring necessary files, and then running a local server to preview your plugin.
If you prefer to create the plugin with angular, there's also a Creating a Plugin (angular).
Keep in mind that this guide is for creating a plugin inside penpot-plugins
monorepo. If you want to create a plugin outside our environment you can check the Penpot Plugin Starter Template or the documentation at Create a Plugin.
Let's dive in.
First, you need to create the scaffolding for your plugin. Use the following command, replacing example-plugin
with the name of your plugin:
npx nx g @nx/web:application example-plugin --directory=apps/example-plugin
Replace module.exports = [
with export default [
and const baseConfig = require('../../eslint.base.config.js');
with import baseConfig from '../../eslint.config.js';
.
Next, create a manifest.json
file inside the /public
directory. This file is crucial as it defines key properties of your plugin, including permissions and the entry point script.
{
"name": "Example Plugin",
"host": "http://localhost:4201",
"code": "/plugin.js",
"icon": "/icon.png",
"permissions": [
"content:write",
"library:write",
"user:read",
"comment:read",
"allow:downloads"
]
}
Now, add the following configuration to your vite.config.ts
to specify the entry points for the build process:
build: {
rollupOptions: {
input: {
plugin: 'src/plugin.ts',
index: './index.html',
},
output: {
entryFileNames: '[name].js',
},
},
}
Update your tsconfig.app.json
to include the necessary TypeScript files for your plugin:
{
"include": ["src/**/*.ts", "../../libs/plugin-types/index.d.ts"]
}
To preview your plugin, start a static server by running:
npx nx run example-plugin:build --watch & npx nx run example-plugin:preview
Add these options to the end of the eslint.config.js
file to allow linting with type information:
{
languageOptions: {
parserOptions: {
project: './tsconfig.*?.json',
tsconfigRootDir: import.meta.dirname,
},
},
},
To load your plugin into Penpot you can use the shortcut Ctrl + Alt + P
to directly open the Plugin manager modal. There you need to provide the plugin's manifest URL (example: http://plugin.example/manifest.json
) for the installation. If there's no issues the plugin will be installed and then you would be able to open it whenever you like.
You can also open the Plugin manager modal via:
For more detailed information on plugin development, check out our guides: