create-fwidgets
v0.0.6
Published
Create a Figma plugin using the fwidgets UI package.
Readme
create-fwidgets
Create a new Figma plugin using the fwidgets library.
Usage
npm create fwidgets@latestFollow the prompts to create a fully-scaffolded plugin directory:
$ npm create fwidgets@latest
Enter the name of the plugin:
> My Plugin
Enter the directory in which to create the plugin:
> my-plugin
✔ Cloned: fwextensions/fwidgets/packages/plugin -> my-pluginThen install the dependencies and start the development server:
$ cd my-plugin
$ npm install
$ npm run devThe plugin will be rebuilt whenever files in the src directory change. (This package uses the excellent create-figma-plugin tool to build and package the plugin.)
In Figma, go to Plugins > Development > Import plugin from manifest... and select the manifest.json file that has been generated in your plugin's directory. Run your new plugin to see the sample code ask for a color, then a number of rectangles to create, and finally a confirmation before creating the colored rectangles and copying their bounding boxes to the clipboard as JSON.

