ComfyUI Frontend Package

1.43.1 · active · verified Sat Apr 11

This package provides frontend components and utilities specifically designed for developing custom nodes and UI extensions within the ComfyUI ecosystem. It helps integrate custom web interfaces and widgets into the ComfyUI frontend. It is currently at version 1.43.1 and is updated frequently alongside ComfyUI releases.

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to check if 'comfyui-frontend-package' is installed in your Python environment and its version. It also serves as a reminder that this package's primary use is for providing frontend assets, not for direct Python programmatic interaction.

import importlib.metadata

try:
    version = importlib.metadata.version('comfyui-frontend-package')
    print(f"comfyui-frontend-package is installed. Version: {version}")
    print("Note: This package primarily provides frontend assets for ComfyUI custom nodes and is not typically used via direct Python imports for its functionality.")
except importlib.metadata.PackageNotFoundError:
    print("comfyui-frontend-package is not installed.")
    print("Install with: pip install comfyui-frontend-package")

view raw JSON →