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

@tzmartin/unovis-ssr-bundle

v1.0.1

Published

A bundled version of Unovis optimized for server-side rendering (SSR) and static chart generation in headless environments

Readme

Unovis SSR Bundle

npm version License: MIT CI

A bundled version of Unovis optimized for server-side rendering (SSR) and static chart generation in headless environments. This package provides a pre-configured bundle of Unovis components and utilities for generating high-quality PNG visualizations via Puppeteer.

Example rendered chart via Puppeteer

Why This Bundle?

Server-side rendering of data visualizations presents unique challenges, particularly in headless environments:

  1. Static Chart Generation: Headless servers cannot maintain dynamic chart state or handle interactive updates, requiring a pre-configured, static chart generation approach.

  2. Bundle Dependencies: Standard Unovis imports may not work in SSR environments due to:

    • Module resolution differences between Node.js and browser environments
    • Dynamic imports that aren't compatible with static generation
    • Browser-specific APIs that aren't available in Node.js
  3. Performance Optimization: This bundle:

    • Pre-configures chart components for static rendering
    • Handles D3.js dependencies efficiently
    • Provides a streamlined API for server-side chart generation
  4. Headless Browser Integration: Includes setup for Puppeteer to render charts in a headless browser environment, managing the complexity of:

    • DOM manipulation in a server context
    • Font loading and rendering
    • SVG to PNG conversion
    • High-DPI output handling

Features

  • Bundled Unovis components for browser and SSR environments
  • Binary chart generation utility
  • TypeScript support
  • Optimized bundle size with external D3.js dependencies

Note: This bundle currently supports a subset of Unovis APIs, primarily focused on line and bar charts as a starting point. Additional chart types and configurations may need to be added to the bundle configuration as needed.

Included Components

The bundle includes the following Unovis components:

  • XYContainer
  • Line
  • Axis
  • SingleContainer
  • StackedBar
  • Donut
  • Scatter
  • Timeline

Prerequisites

  • Node.js (Latest LTS recommended)
  • yarn or pnpm package manager
  • Bun runtime (optional, only needed for binary generation)

Installation

Local Development

  1. Clone the repository
  2. Install dependencies:
# Preferred
bun install

# Alternative
pnpm install

Using as a Dependency

Install the package from npm:

# Using npm
npm install @tzmartin/unovis-ssr-bundle

# Using yarn
yarn add @tzmartin/unovis-ssr-bundle

# Using pnpm
pnpm add @tzmartin/unovis-ssr-bundle

Note: Puppeteer is a peer dependency. If you plan to use the SSR features, you'll need to install it separately:

npm install puppeteer

Building

The project includes several build scripts:

# Install dependencies
bun install # or pnpm install

# Build everything (including binary if Bun is installed)
bun run build

# Individual build steps
bun run prebuild         # Create dist directory
bun run build:unovis     # Bundle Unovis components
bun run build:binary     # Create binary chart generator (requires Bun)

# Development with watch mode
bun run watch

# Clean build artifacts
bun run clean

Note: The binary generation step (build:binary) is optional and requires Bun runtime. The main bundle can be built and used without Bun.

Testing

The project includes a test suite to verify the bundle's functionality:

# Run tests (automatically builds the bundle first)
bun test

# Clean and test
bun run clean && bun test

Test files are located in the test directory:

  • bundle.test.js: Verifies bundle generation and exports
  • data/sample.json: Sample data for testing chart generation

Project Structure

unovis-bundle/
├── src/
│   └── bundle-entry.ts    # Main entry point for Unovis components
├── test/
│   ├── data/
│   │   └── sample.json    # Sample data for testing
│   ├── bundle.test.js     # Bundle tests
│   └── main.js           # SSR chart generation test
├── dist/                 # Built files
├── rollup.config.mjs     # Rollup bundler configuration
├── tsconfig.json         # TypeScript configuration
└── package.json          # Project dependencies and scripts

Usage

1. Browser Usage

<!-- Using CDN -->
<script src="https://unpkg.com/@tzmartin/unovis-ssr-bundle"></script>

<!-- Or include locally -->
<script src="node_modules/@tzmartin/unovis-ssr-bundle/dist/unovis-bundle.js"></script>

2. ESM Import

import { XYContainer, Line } from '@tzmartin/unovis-ssr-bundle';

// Create a simple line chart
const data = [
  { x: 0, y: 10 },
  { x: 1, y: 15 },
  { x: 2, y: 8 }
];

const line = new Line({
  x: d => d.x,
  y: d => d.y
});

const container = new XYContainer(document.getElementById('vis-container'), {
  components: [line]
}, data);

3. Server-Side Chart Generation

# Using the binary directly
./node_modules/.bin/chart-gen --input data.json --output chart.png --width 800 --height 600

# Or via npm scripts (add to your package.json):
{
  "scripts": {
    "generate-chart": "chart-gen --input data.json --output chart.png"
  }
}

Development

To modify or extend the bundle:

  1. Add/remove components in src/bundle-entry.ts
  2. Update rollup configuration if needed
  3. Run build scripts
  4. Test the output in your target environment

Important: This bundle includes a limited subset of Unovis components, primarily focused on line and bar charts. To add support for additional chart types or configurations:

  1. Update src/bundle-entry.ts to import and export the desired components
  2. Modify rollup.config.mjs if additional external dependencies are needed
  3. Test thoroughly with your specific use case

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT License - see the LICENSE file for details

Acknowledgments

Special thanks to the Unovis contributors for their excellent visualization library.