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

nodejs-ai-image-generator

v0.1.1

Published

Generate images using [Ollama](https://ollama.com) image models from Node.js.

Readme

nodejs-ai-image-generator

Generate images using Ollama image models from Node.js.

Requirements

  • Ollama running locally (default: http://localhost:11434)
  • An image-capable model pulled, e.g. ollama pull x/flux2-klein:4b (Experimental, currently available only on macOS. Follow this repo for feature updates :) )

Installation

npm install nodejs-ai-image-generator

Usage

import { generateImage } from 'nodejs-ai-image-generator';

const result = await generateImage({
  prompt: 'a futuristic city at sunset, highly detailed, cinematic lighting',
  // optional — defaults shown below
  host: 'http://localhost:11434',
  model: 'x/flux2-klein:4b',
  options: {
    seed: 42, // Don't pass if you want to generate different images every time
    width: 512,
    height: 512,
    steps: 20,
    negative_prompt: 'blurry, low quality',
  },
});

// result.imageBase64 — base64-encoded PNG
// result.model       — model name used
// result.createdAt   — ISO timestamp

Save the image to disk:

import fs from 'fs';

fs.writeFileSync('output.png', Buffer.from(result.imageBase64, 'base64'));

generateImage config

| Field | Type | Default | Description | |---|---|---|---| | prompt | string | — | Image prompt (required) | | host | string | http://localhost:11434 | Ollama host URL | | model | string | x/flux2-klein:4b | Model to use | | options.seed | number | — | Reproducibility seed | | options.width | number | — | Output width in px | | options.height | number | — | Output height in px | | options.steps | number | — | Diffusion steps | | options.negative_prompt | string | — | Things to avoid |

Batch generation

Use batchGenerateImages to generate images for multiple prompts. Images are generated one by one in sequence.

import { batchGenerateImages } from 'nodejs-ai-image-generator';

const batch = await batchGenerateImages({
  prompts: [
    'a sunset over mountains',
    'a futuristic city at night',
  ],
  countPerPrompt: 3, // generate 3 images per prompt (default: 1)
  onProgress: (completed, total) => {
    console.log(`Progress: ${completed}/${total} images generated`);
  },
  // optional — same host, model, options as generateImage
  host: 'http://localhost:11434',
  model: 'x/flux2-klein:4b',
  options: {
    width: 512,
    height: 512,
    steps: 20,
    negative_prompt: 'blurry, low quality',
  },
});

for (const { prompt, results } of batch) {
  results.forEach((result, i) => {
    fs.writeFileSync(`output-${i}.png`, Buffer.from(result.imageBase64, 'base64'));
  });
}

Batch config

| Field | Type | Default | Description | |---|---|---|---| | prompts | string[] | — | List of image prompts (required) | | countPerPrompt | number | 1 | Number of images to generate per prompt | | onProgress | (completed: number, total: number) => void | — | Called after each image finishes | | host | string | http://localhost:11434 | Ollama host URL | | model | string | x/flux2-klein:4b | Model to use | | options | GenerateImageOptions | — | Same options as generateImage |

License

MIT