├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── classes └── WebSocketManager.py ├── pyproject.toml └── web ├── assets └── img │ └── logo.png ├── lib ├── nexus.api.js ├── nexus.chat.js ├── nexus.cmd.js ├── nexus.comfy.js ├── nexus.elements.js ├── nexus.litegraph.js ├── nexus.mouse.js ├── nexus.panel.js ├── nexus.sockets.js ├── nexus.styles.js ├── nexus.user.manager.js ├── nexus.workflow.js └── nexus.workflow.panel.js └── util.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/__init__.py -------------------------------------------------------------------------------- /classes/WebSocketManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/classes/WebSocketManager.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /web/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/assets/img/logo.png -------------------------------------------------------------------------------- /web/lib/nexus.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.api.js -------------------------------------------------------------------------------- /web/lib/nexus.chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.chat.js -------------------------------------------------------------------------------- /web/lib/nexus.cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.cmd.js -------------------------------------------------------------------------------- /web/lib/nexus.comfy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.comfy.js -------------------------------------------------------------------------------- /web/lib/nexus.elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.elements.js -------------------------------------------------------------------------------- /web/lib/nexus.litegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.litegraph.js -------------------------------------------------------------------------------- /web/lib/nexus.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.mouse.js -------------------------------------------------------------------------------- /web/lib/nexus.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.panel.js -------------------------------------------------------------------------------- /web/lib/nexus.sockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.sockets.js -------------------------------------------------------------------------------- /web/lib/nexus.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.styles.js -------------------------------------------------------------------------------- /web/lib/nexus.user.manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.user.manager.js -------------------------------------------------------------------------------- /web/lib/nexus.workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.workflow.js -------------------------------------------------------------------------------- /web/lib/nexus.workflow.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/lib/nexus.workflow.panel.js -------------------------------------------------------------------------------- /web/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daxcay/ComfyUI-Nexus/HEAD/web/util.js --------------------------------------------------------------------------------