# Contributing to ComfyUI Frontend We're building this frontend together and would love your help — no matter how you'd like to pitch in! You don't need to write code to make a difference. ## Ways to Contribute - **Pull Requests:** Add features, fix bugs, or improve code health. Browse [issues](https://github.com/Comfy-Org/ComfyUI_frontend/issues) for inspiration. Look for the `Good first issue` label if you're new to the project. - **Vote on Features:** Give a 👍 to the feature requests you care about to help us prioritize. - **Verify Bugs:** Try reproducing reported issues and share your results (even if the bug doesn't occur!). - **Community Support:** Hop into our [Discord](https://discord.com/invite/comfyorg) to answer questions or get help. - **Share & Advocate:** Tell your friends, tweet about us, or share tips to support the project. Have another idea? Drop into Discord or open an issue, and let's chat! ## Development Setup ### Prerequisites & Technology Stack - **Required Software**: - Node.js (v24) and pnpm - Git for version control - A running ComfyUI backend instance (otherwise, you can use `pnpm dev:cloud`) ### Initial Setup 1. Clone the repository: ```bash git clone https://github.com/Comfy-Org/ComfyUI_frontend.git cd ComfyUI_frontend ``` 2. Install dependencies: ```bash pnpm install ``` 3. Configure environment (optional): Create a `.env` file in the project root based on the provided [.env_example](.env_example) file. **Note about ports**: By default, the dev server expects the ComfyUI backend at `localhost:8188`. If your ComfyUI instance runs on a different port, update this in your `.env` file. ### Dev Server Configuration To launch ComfyUI and have it connect to your development server: ```bash python main.py --port 8188 ``` If you are on Mac or a low-spec machine, you can run the server in CPU mode ```bash python main.py --port 8188 --cpu ``` ### Dev Server - Start local ComfyUI backend at `localhost:8188` - Run `pnpm dev` to start the dev server - Run `pnpm dev:electron` to start the dev server with electron API mocked - Run `pnpm dev:cloud` to start the dev server against the cloud backend (instead of local ComfyUI server) #### Access dev server on touch devices Enable remote access to the dev server by setting `VITE_REMOTE_DEV` in `.env` to `true`. After you start the dev server, you should see following logs: ``` > comfyui-frontend@1.3.42 dev > vite VITE v5.4.6 ready in 488 ms ➜ Local: http://localhost:5173/ ➜ Network: http://172.21.80.1:5173/ ➜ Network: http://192.168.2.20:5173/ ➜ press h + enter to show help ``` Make sure your desktop machine and touch device are on the same network. On your touch device, navigate to `http://:5173` (e.g. `http://192.168.2.20:5173` here), to access the ComfyUI frontend. > ⚠️ IMPORTANT: The dev server will NOT load JavaScript extensions from custom nodes. Only core extensions (built into the frontend) will be loaded. This is because the shim system that allows custom node JavaScript to import frontend modules only works in production builds. Python custom nodes still function normally. See [Extension Development Guide](docs/extensions/development.md) for details and workarounds. And See [Extension Overview](docs/extensions/README.md) for extensions overview. ## Development Workflow ### Architecture Decision Records We document significant architectural decisions using ADRs (Architecture Decision Records). See [docs/adr/](docs/adr/) for all ADRs and the template for creating new ones. ### Backporting Changes to Release Branches When you fix a bug that affects a version in feature freeze, we use an automated backport process to apply the fix to the release candidate branch. #### Real Example - Subgraphs feature was released in v1.24 - While developing v1.25, we discovered a bug in subgraphs - v1.24 is in feature freeze (only accepting bug fixes, no new features) - The fix needs to be applied to both main (v1.25) and the v1.24 release candidate #### How to Backport Your Fix 1. Create your PR fixing the bug on `main` branch as usual 2. Before merging, add these labels to your PR: - `needs-backport` - triggers the automated backport workflow - `core/1.24` - targets the `core/1.24` release candidate branch 3. Merge your PR normally 4. The automated workflow will: - Create a new branch from `core/1.24` - Apply your changes to that branch - Open a new PR to `core/1.24` - Comment on your original PR with a link to the backport PR #### When to Use Backporting - Bug fixes for features already released - Security fixes - Critical issues affecting existing functionality - Never for new features (these wait for the next release cycle) #### Handling Conflicts If the automated cherry-pick fails due to conflicts, the workflow will comment on your PR with: - The list of conflicting files - Instructions to manually cherry-pick to the release candidate branch See [PR #4616](https://github.com/Comfy-Org/ComfyUI_frontend/pull/4616) for the actual subgraph bugfix that was backported from v1.25 to v1.24. ## Code Editor Configuration ### Recommended Setup This project includes `.vscode/launch.json.default` and `.vscode/settings.json.default` files with recommended launch and workspace settings for editors that use the `.vscode` directory (e.g., VS Code, Cursor, etc.). We've also included a list of recommended extensions in `.vscode/extensions.json`. Your editor should detect this file and show a human friendly list in the Extensions panel, linking each entry to its marketplace page. ## Testing ### Unit Tests - `pnpm i` to install all dependencies - `pnpm test:unit` to execute all unit tests ### Playwright Tests Playwright tests verify the whole app. See [browser_tests/README.md](browser_tests/README.md) for details. The snapshots are generated in the GH actions runner, not locally. ### Running All Tests Before submitting a PR, ensure all tests pass: ```bash pnpm test:unit pnpm typecheck pnpm lint pnpm format ``` ## Code Style Guidelines ### TypeScript - Use TypeScript for all new code - Avoid `any` types - use proper type definitions - Never use `@ts-expect-error` - fix the underlying type issue ### Vue 3 Patterns - Use Composition API for all components - Follow Vue 3.5+ patterns (props destructuring is reactive) - Use `