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

@azuro-org/images-generator

v2.0.7

Published

Puppeteer-based image generator: render HTML templates to PNG/JPEG. Uses a shared browser instance; relaunches automatically if the browser disconnects.

Readme

@azuro-org/images-generator

Puppeteer-based image generator: render HTML templates to PNG/JPEG. Uses a shared browser instance; relaunches automatically if the browser disconnects.

Installation

npm install @azuro-org/images-generator

Usage

Create a Generator instance, call run() to start the browser, then use generate() for each image. Call shutdown() when done to close the browser.

import { Generator } from '@azuro-org/images-generator';
import template from '@azuro-org/images-generator/lib/templates/bet-nft';

const generator = new Generator();

await generator.run();

// Single image – returns Uint8Array
const buffer = await generator.generate({
  template,
  props: { /* ... */ },
});

// Save to file
await generator.generate({
  template,
  props: { /* ... */ },
  output: './dist',
  filename: 'my-image',
});

await generator.shutdown();

Batch generation with shutdown

Run multiple generations in parallel and close the browser when finished:

await generator.run();

await Promise.all([
  generator.generate({ template, props: props1, output: './dist', filename: 'image-1' }),
  generator.generate({ template, props: props2, output: './dist', filename: 'image-2' }),
]).finally(() => {
  generator.shutdown();
});

Auto-recovery

If the browser process exits or crashes, the next generate() call will launch a new browser automatically. You can also call run() again after a disconnect.

API

Generator

Constructor

const generator = new Generator(options?: GeneratorOptions);

interface GeneratorOptions {
  headless?: boolean;  // default: true
  timeout?: number;    // default: 30000 (ms)
  args?: string[];     // extra Chromium args
}

Methods

  • run(): Promise<void> — Launches the browser. Idempotent if already running.
  • generate<P>(props: GenerateProps<P>): Promise<Uint8Array> — Renders the template with the given props. Ensures the browser is running (calls run() if needed).
  • shutdown(): Promise<void> — Closes the browser and cleans up.

generate() options

interface GenerateProps<P> {
  template: Template<P>;
  props: P;
  output?: string;   // folder path for the output file
  filename?: string; // file name without extension (used with output)
  options?: GenerateOptions;
}

interface GenerateOptions {
  quality?: number;           // JPEG quality, default 85
  fullPage?: boolean;        // default false
  waitForFonts?: boolean;    // default true
  waitTimeout?: number;      // ms, default 2000
  waitUntil?: 'load' | 'domcontentloaded' | 'networkidle0' | 'networkidle2'; // default 'domcontentloaded'
  skipAnimations?: boolean;  // default true
}

Templates

Templates are in lib/templates/<name> (or dist/templates/<name> for ESM). Each template exports a default Template and a Props type.

| Template | Import path | |--------------------|----------------------------------------------------------| | Bet NFT | @azuro-org/images-generator/lib/templates/bet-nft | | Bet OG | @azuro-org/images-generator/lib/templates/bet-og | | Combo Bet OG | @azuro-org/images-generator/lib/templates/combo-bet-og | | Freebet | @azuro-org/images-generator/lib/templates/freebet | | Trendle Leaderboard| @azuro-org/images-generator/lib/templates/trendle-leaderboard | | Trendle Social | @azuro-org/images-generator/lib/templates/trendle-social | | Trendle Trading | @azuro-org/images-generator/lib/templates/trendle-trading |


Examples

import { Generator } from '@azuro-org/images-generator';
import template from '@azuro-org/images-generator/lib/templates/bet-og';

const generator = new Generator();
await generator.run();

await generator.generate({
  template,
  output: './dist',
  filename: 'bet-og',
  props: {
    title: 'Decentralized betting is awesome!',
    game: {
      country: 'International Tournaments',
      league: 'ESL Challenger League North America',
      participants: [
        { name: 'WINDINGO', image: 'https://content.bookmaker.xyz/avatars/provider-3/4757.png' },
        { name: 'Los Grandes Academy', image: 'https://content.bookmaker.xyz/avatars/provider-3/4739.png' },
      ],
      startsAt: Date.now(),
    },
  },
});

await generator.shutdown();

Result

import { Generator } from '@azuro-org/images-generator';
import template from '@azuro-org/images-generator/lib/templates/combo-bet-og';

const generator = new Generator();
await generator.run();

await generator.generate({
  template,
  output: './dist',
  filename: 'combo-bet-og',
  props: {
    title: 'Decentralized betting is awesome!',
    data: {
      totalOdds: 1.57,
      possiblePayout: 1017.17,
      asset: 'USDT',
    },
  },
});

await generator.shutdown();

Result

import { Generator } from '@azuro-org/images-generator';
import template from '@azuro-org/images-generator/lib/templates/bet-nft';

const generator = new Generator();
await generator.run();

await generator.generate({
  template,
  output: './dist',
  filename: 'bet-nft',
  props: {
    type: 'match',
    sport: 'Football',
    league: 'International Tournaments · FIFA - World Cup',
    team1: { img: 'https://content.bookmaker.xyz/avatars/provider-3/4757.png', name: 'Ecuador' },
    team2: { img: 'https://content.bookmaker.xyz/avatars/provider-3/4739.png', name: 'Senegal' },
    date: 'Dec 24, 2020',
    betAmount: '100 xDAI',
    outcome: 'Senegal',
    betOdds: '1.7',
    currentOdds: '1.2',
  },
});

await generator.shutdown();

Result

import { Generator } from '@azuro-org/images-generator';
import template from '@azuro-org/images-generator/lib/templates/freebet';

const generator = new Generator();
await generator.run();

await generator.generate({
  template,
  output: './dist',
  filename: 'freebet',
  props: {
    amount: '5 xDAI',
    date: '12.01.2022',
  },
});

await generator.shutdown();

Result


Contributing

Add a new template

  1. Copy src/templates/_template to src/templates/{your_template_name}.
  2. Put layout and styles in index.html.
  3. Add a images folder for static assets if needed.

Template definition

Use Template<Props>, getBase64Image, and downloadImage from ../../utils:

import { type Template, downloadImage } from '../../utils';
import html from './index.html';

export type Props = {
  team1ImageSrc: string;
  team2ImageSrc: string;
  date: string;
};

const template: Template<Props> = {
  width: 800,
  height: 400,
  type: 'jpeg',
  html: async (props: Props) => {
    const { team1ImageSrc, team2ImageSrc, date } = props;
    const team1Img = await downloadImage(team1ImageSrc);
    const team2Img = await downloadImage(team2ImageSrc);
    return html
      .replace('{image1}', team1Img)
      .replace('{image2}', team2Img)
      .replace('{date}', date);
  },
};

export default template;

Template shape

type Template<Props> = {
  width: number;
  height: number;
  type: 'png' | 'jpeg';
  html: (props: Props) => string | Promise<string>;
  headless?: boolean;
  scaleFactor?: 1 | 2;
};

Publish

Publish with npm publish. For access to the @azuro-org scope, contact the maintainers.