https://github.com/elsewhencode/contabulate-figma-plugin
A Figma plugin to create tables
https://github.com/elsewhencode/contabulate-figma-plugin
Last synced: 8 months ago
JSON representation
A Figma plugin to create tables
- Host: GitHub
- URL: https://github.com/elsewhencode/contabulate-figma-plugin
- Owner: elsewhencode
- Archived: true
- Created: 2020-12-07T14:56:20.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-12T11:11:57.000Z (over 4 years ago)
- Last Synced: 2025-02-15T19:49:02.418Z (10 months ago)
- Language: TypeScript
- Size: 526 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Contabulate
## Development guide
_This plugin is built with [Create Figma Plugin](https://github.com/yuanqing/create-figma-plugin)._
### Pre-requisites
- [Node.js](https://nodejs.org/)
- [Figma desktop app](https://figma.com/downloads/)
### Building the plugin
First:
```
$ npm install
```
To build the plugin:
```
$ npm run build
```
This will generate a [`manifest.json`](https://figma.com/plugin-docs/manifest/) file and a `build/` directory containing a JavaScript bundle for the plugin.
To watch for code changes and rebuild the plugin automatically:
```
$ npm run watch
```
### Installing the plugin
In the Figma desktop app:
- Open a Figma document.
- Go to `Plugins` → `Development` → `New Plugin…`.
- Click the `Click to choose a manifest.json file` box, and select the `manifest.json` file that was generated.
### Debugging
Use `console.log` statements to inspect values in your code.
To open the developer console in the Figma desktop app, go to `Plugins` → `Development` → `Open Console`.
### Docs
- [Create Figma Plugin docs](https://github.com/yuanqing/create-figma-plugin#docs)
- [Figma plugin API docs](https://figma.com/plugin-docs/api/)