{"id":21372868,"url":"https://github.com/calebnance/figma-plugin-react-starter","last_synced_at":"2026-02-07T11:04:17.676Z","repository":{"id":51228289,"uuid":"415461115","full_name":"calebnance/figma-plugin-react-starter","owner":"calebnance","description":"Figma Plugin Starter:  React + Webpack 5 + SCSS","archived":false,"fork":false,"pushed_at":"2022-08-02T01:43:06.000Z","size":998,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-22T10:51:48.309Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/calebnance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-10T01:42:17.000Z","updated_at":"2022-07-15T03:30:00.000Z","dependencies_parsed_at":"2022-09-23T05:41:14.634Z","dependency_job_id":null,"html_url":"https://github.com/calebnance/figma-plugin-react-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/calebnance/figma-plugin-react-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebnance%2Ffigma-plugin-react-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebnance%2Ffigma-plugin-react-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebnance%2Ffigma-plugin-react-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebnance%2Ffigma-plugin-react-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/calebnance","download_url":"https://codeload.github.com/calebnance/figma-plugin-react-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebnance%2Ffigma-plugin-react-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29193089,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T08:23:32.294Z","updated_at":"2026-02-07T11:04:17.648Z","avatar_url":"https://github.com/calebnance.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Figma Plugin: React Starter\n\n## Table of Contents\n\n- [Install \u0026 Build](#install--build)\n- [Features](#features)\n- [Linting](#linting)\n- [Release Notes](#release-notes)\n- [Helpful Links](#helpful-links)\n\n## Install \u0026 Build\n\nFirst, make sure you have [Node.js](https://nodejs.org) installed on your machine.\n\n_if you use nvm_, `nvm use` to switch to 16.13.1\n\n**Install:**\n\n```bash\nnpm i\n```\n\n**Run Plugin locally with hot-reload:**\n\n```bash\nnpm start\n```\n\n**Run UI in Browser:**\n\n***(only use this for easier UI updates, doesn't interact with Figma layer)***\n\n```bash\nnpm run serve\n```\n\n**Run Production bundle:**\n\n**this bundles your plugin into a `.zip` for easy distribution, created within `/dist_zips/`\n\n```bash\nnpm run bundle\n```\n\n## Features\n\n- Webpack 5 + React (javascript) + SCSS\n- Production Bundling + Zipped\n- Interact with UI in Browser\n\n## Linting\n\n- `npm run lint` for a list of linting warnings/error in cli\n- make sure you have prettier package installed:\n  - [prettier for atom](https://atom.io/packages/prettier-atom)\n  - [prettier for vscode](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)\n- then make sure to enable these options (packages → prettier):\n  - eslint integration\n  - automatic format on save (toggle format on save)\n\n## Release Notes\n\n**version 1.1.0**\n\n- added [Dark Mode](https://www.figma.com/plugin-docs/css-variables/) support with the announcement of [Dark Mode for Figma](https://help.figma.com/hc/en-us/articles/5576781786647-Change-themes-in-Figma)\n- updated React and React DOM to v.18\n\n**version 1.0.0**\n\n- Examples of how to:\n  - communicate with Figma via postMessage bridge\n  - traverse a Figma frame for images\n  - zoom/scroll to a specific node in the Figma Document\n  - resize the plugin\n  - close the plugin programmatically\n- Started with React and React DOM to v.17\n\n## Helpful Links\n\n**Figma**\n\n- [Post Message to UI Layer](https://www.figma.com/plugin-docs/api/figma-ui/#postmessage)\n- [Close Plugin](https://www.figma.com/plugin-docs/api/figma-ui/#close)\n\n**Webpack**\n\n- [Webpack development](https://webpack.js.org/guides/development/)\n- [Webpack dev server](https://webpack.js.org/configuration/dev-server/)\n- [Webpack devtool](https://webpack.js.org/configuration/devtool/)\n- [Webpack + React guide help](https://www.toptal.com/react/webpack-react-tutorial-pt-1)\n- Errors\n  - [Webpack public pathing](https://stackoverflow.com/questions/64294706/webpack5-automatic-publicpath-is-not-supported-in-this-browser)\n  - [Webpack and transpiling](https://stackoverflow.com/questions/59709252/how-can-i-solve-my-typescript-eslint-webpack-transpiling-problem)\n\nBased off [Figma Webpack React (TypeScript) Example](https://github.com/figma/plugin-samples#webpack--react)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebnance%2Ffigma-plugin-react-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcalebnance%2Ffigma-plugin-react-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebnance%2Ffigma-plugin-react-starter/lists"}