Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/presentator/figma
Figma plugin for Presentator
https://github.com/presentator/figma
figma figma-plugin presentator
Last synced: 5 days ago
JSON representation
Figma plugin for Presentator
- Host: GitHub
- URL: https://github.com/presentator/figma
- Owner: presentator
- License: mit
- Created: 2019-12-26T12:44:45.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-21T09:47:00.000Z (11 months ago)
- Last Synced: 2023-12-21T12:38:06.877Z (11 months ago)
- Topics: figma, figma-plugin, presentator
- Language: JavaScript
- Homepage: https://www.figma.com/community/plugin/791989050714284849/presentator-export
- Size: 823 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Presentator Figma plugin
======================================================================Figma plugin to export design frames directly to Presentator v2 and v3.
OAuth2 authentication is supported only with Presentator v3.
- [Installing](#installing)
- [Development](#development)## Installing
#### From Figma Plugins Page
Visit https://www.figma.com/community/plugin/791989050714284849/presentator-export and click "Open in Figma".
#### Manually
1. Download or clone the plugin repo.
2. Go to _Plugins > Manage plugins > New plugin (+) > Import plugin from manifest_ and select the `manifest.json` file of the plugin.
## Development
The plugin is consisted of 2 parts:
- Figma plugin initialization code located in `src/figma.js`.
- Everything else is the plugin dialog UI.1. Download or clone the plugin repo.
2. Run the appropriate console commands:
```bash
# installs dependencies
npm install# starts a Vite dev server of the UI to preview in the browser
npm run dev# builds both the UI and Figma plugin code in the dist directory
npm run build
```