Figstail is a comprehensive starter project for developing Figma plugins using Svelte and TailwindCSS. It provides a solid foundation and preconfigured setup to help you quickly start building powerful Figma plugins with a streamlined development experience.
git clone https://github.com/saishmenon/figstail.git figma-plugin
cd figma-plugin
npm install
npm run dev
This will launch the development server and provide you with a local URL where you can preview your plugin during development.
npm run build
This step is not necessary for running your plugin. This command will generate a production-ready build of your plugin, which can then be used to publish the plugin to the Figma Community.
After installing, open your Figma desktop app and right click on the canvas and select Plugins > Development > Import plugin from manifest...
and find the manifest.json
inside the project directory figma-plugin/public/manifest.json
and select it to link it.
You also can just type "New Plugin" in Figma global search Cmd + /
or Ctrl + /
to get there.
Now edit the below line in the manifest.json file to give your plugin a new name.
"name": "Figstail Plugin Template",