Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.33 KB

cli.md

File metadata and controls

32 lines (23 loc) · 1.33 KB

Important

Implementation just added in v0.2.9. Please report bugs!

Warning

This package is not distributed via npm.
You might have to write something like bun link comfyui-bun-runtime in the repo to activate it first.
Otherwise, you can just use run the script as a normal executable.

Sub commands

Ideally I would have used something like commander.js to handle the CLI, but I am really trying to keep external dependencies as low as possible.
Because of that, the CLI interface is not as good as I would like, and if I need to expand it further I will probably reconsider this.

Generating types

bunx comfybun gen-types DEST_FILE --url=HOST:PORT --packageName=comfyclient

url and packageName have sound defaults.
If DEST_FILE is not specified a comfy-types.ts file will be generated locally.

Code from image

bunx comfybun gen-code SOURCE_IMAGE DEST_FILE --clientName=comfy

It requires the optional peer dependency sharp to be available, (or installed globally).
DEST_FILE is optional, if missing the source name with .ts will be used.
clientName is also optional and it assumes comfy as the default client name.
If raw is set true only the list of nodes is generated, else (default) more opinionated boilerplate will be added.