npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

vision-bridge

v0.2.0

Published

Use GLM-4.6V-Flash to convert images to text for non-vision AI models

Readme

Vision Bridge

Use GLM-4.6V-Flash to convert images to text for non-vision AI models.

Problem

Many LLMs don't support image input. Vision Bridge solves this by using GLM-4.6V-Flash (free) as a vision intermediary.

How It Works

Image → GLM-4.6V-Flash → Text Description → Your Non-Vision Model

Installation

npm install -g vision-bridge

Setup

Set your ZhipuAI API key:

export ZHIPUAI_API_KEY="your-api-key"

Get API key: https://open.bigmodel.cn

Usage

Analyze Image

# From local file
vision-bridge analyze photo.jpg

# From URL
vision-bridge analyze https://example.com/image.png

# Custom prompt
vision-bridge analyze screenshot.png -p "What UI components are in this screenshot?"

# Stream output
vision-bridge analyze doc.jpg --stream

# Enable thinking mode for complex images
vision-bridge analyze chart.png --thinking

# Save to file
vision-bridge analyze receipt.jpg -o output.txt

OCR Mode

# Extract text from image
vision-bridge ocr document.jpg

# Save OCR result
vision-bridge ocr table.jpg -o table.md

Image2Prompt

# Generate AI art prompt from image
vision-bridge prompt artwork.jpg

Pipe to Other Models

# Use with any CLI model tool
vision-bridge analyze image.jpg | some-text-model --stdin

# Example workflow
vision-bridge analyze screenshot.png -o desc.txt
cat desc.txt | your-favorite-llm "Based on this UI description, generate the HTML/CSS code"

Options

| Option | Description | |--------|-------------| | -p, --prompt | Custom analysis prompt | | -k, --api-key | API key (or use env var) | | -t, --thinking | Enable deep reasoning | | -s, --stream | Stream output | | -o, --output | Save to file |

Library Usage

import { VisionBridge } from "vision-bridge";

const bridge = new VisionBridge({ apiKey: "your-api-key" });

// Analyze image
const description = await bridge.analyze("https://example.com/image.png");

// Stream analysis
for await (const chunk of bridge.analyzeStream("photo.jpg")) {
  process.stdout.write(chunk);
}

// OCR
const text = await bridge.ocr("document.jpg");

// Image to prompt
const prompt = await bridge.image2prompt("artwork.jpg");

License

MIT