Socket
Book a DemoInstallSign in
Socket

comfyui-json

Package Overview
Dependencies
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

comfyui-json

Install npm

0.1.31
latest
npmnpm
Version published
Weekly downloads
21
2000%
Maintainers
2
Weekly downloads
 
Created
Source

comfyui-json

Install npm

bun i comfyui-json

API

const deps = await generateDependencyGraph({
  workflow_api, // required, workflow API form ComfyUI
  snapshot, // optional, snapshot generated form ComfyUI Manager
  computeFileHash, // optional, any function that returns a file hash
  handleFileUpload, // optional, any custom file upload handler, for external files right now
});

Example output

{
  "comfyui": "d1533d9c0f1dde192f738ef1b745b15f49f41e02",
  "custom_nodes": {
    "https://github.com/ltdrdata/ComfyUI-Impact-Pack": {
      "url": "https://github.com/ltdrdata/ComfyUI-Impact-Pack",
      "name": "ComfyUI Impact Pack",
      "hash": "585787bfa7fe0916821add13aa0e2a01c999a4df",
      "warning": "No hash found in snapshot, using latest commit hash",
      "pip": [
        "ultralytics"
      ]
    }
  },
  "models": {
    "checkpoints": [
      {
        "name": "SD1.5/V07_v07.safetensors"
      }
    ]
  },
  "files": {
    "images": [
      {
        "name": "2pass-original.png"
      }
    ]
  }
}

Example file upload handler

const handleFileUpload = async (
  _path: string,
  hash: string,
  prevHash?: string,
) => {
  console.log(
    `Uploading file ${_path} with hash ${hash} and previous hash ${prevHash}`,
  );

  return _path;
};

Example bun file hasher

const computeFileHash = async (_path: string) => {
  const comfyuiPath = values.comfyui_path;
  if (!comfyuiPath) {
    return;
  }

  const f = file(path.join(comfyuiPath, _path));
  const exist = await f.exists();
  if (exist) {
    const a = await f.arrayBuffer();
    const hasher = new Bun.CryptoHasher("sha256");
    hasher.update(a);
    const hash = hasher.digest("base64");

    return hash;
  }
};

To install dependencies:

bun install

To test locally run:

bun run src/cli.ts -i "./workflow_api.json" -c "path/to/your/ComfyUI"

FAQs

Package last updated on 30 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.