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 🙏

© 2025 – Pkg Stats / Ryan Hefner

vistaview

v0.3.4

Published

A lightweight, zero-dependency image lightbox library with smooth animations and touch support

Readme

VistaView

A lightweight, modern image lightbox library for the web. Zero dependencies, framework-agnostic, and highly customizable.

Features

  • 🪶 Lightweight — Minimal footprint, no external dependencies
  • 📱 Mobile-first — Touch gestures, smooth animations, responsive design
  • 🎨 Customizable — Configurable controls, animations, and styling
  • Accessible — Keyboard navigation, reduced motion support
  • 🔧 Framework-agnostic — Works with vanilla JS, React, Vue, Svelte, Solid, or any framework
  • 🖼️ Progressive loading — Low-res thumbnails → high-res images with smooth transitions
  • 🔍 Zoom support — Zoom in/out with buttons, respects actual image resolution

Installation

npm install vistaview

Using CDN (UMD)

For quick prototyping or non-bundler environments, use the UMD build via CDN:

<!-- unpkg -->
<link rel="stylesheet" href="https://unpkg.com/vistaview/dist/vistaview.css" />
<script src="https://unpkg.com/vistaview/dist/vistaview.umd.js"></script>

<!-- or jsDelivr -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vistaview/dist/vistaview.css" />
<script src="https://cdn.jsdelivr.net/npm/vistaview/dist/vistaview.umd.js"></script>

<script>
  // VistaView is available globally
  VistaView.vistaView({
    elements: '#gallery a',
  });
</script>

Quick Start

Using anchor elements (recommended)

<div id="gallery">
  <a href="/images/photo1-full.jpg">
    <img src="/images/photo1-thumb.jpg" alt="Photo 1" />
  </a>
  <a href="/images/photo2-full.jpg">
    <img src="/images/photo2-thumb.jpg" alt="Photo 2" />
  </a>
</div>

<script type="module">
  import { vistaView } from 'vistaview';
  import 'vistaview/style.css';

  vistaView({
    elements: '#gallery a',
  });
</script>

Using data attributes on images

<div id="gallery">
  <img src="/images/thumb1.jpg" data-vistaview-src="/images/full1.jpg" alt="Photo 1" />
</div>

Using a CSS selector

vistaView({
  elements: '#gallery img',
});

Using a NodeList

vistaView({
  elements: document.querySelectorAll('.gallery-image'),
});

Using an array of images

vistaView({
  elements: [
    { src: '/images/photo1.jpg', thumb: '/images/thumb1.jpg', alt: 'Photo 1' },
    { src: '/images/photo2.jpg', thumb: '/images/thumb2.jpg', alt: 'Photo 2' },
  ],
});

Options

import { vistaView, vistaViewDownload } from 'vistaview'

vistaView({
  // Required: specify elements (string selector, NodeList, or array)
  elements: string | NodeList | VistaViewImage[],

  // Optional configuration
  animationDurationBase: 333, // Base animation duration in ms (default: 333)
  initialZIndex: 1, // Starting z-index for the lightbox (default: 1)
  detectReducedMotion: true, // Respect prefers-reduced-motion (default: true)
  zoomStep: 500, // Pixels to zoom per step (default: 500)
  maxZoomLevel: 2, // Maximum zoom multiplier (default: 2)
  touchSpeedThreshold: 0.7, // Swipe speed threshold for navigation (default: 0.7)
  preloads: 1, // Number of adjacent images to preload on each side (default: 1)
  keyboardListeners: true, // Enable keyboard navigation (default: true)

  // Control placement (defaults shown)
  controls: {
    topLeft: ['indexDisplay'],
    topRight: ['zoomIn', 'zoomOut', vistaViewDownload(), 'close'],
    topCenter: [],
    bottomLeft: [],
    bottomCenter: ['description'],
    bottomRight: [],
  },

  // Events
  onOpen: (data) => {},      // Called when lightbox opens
  onClose: (data) => {},     // Called when lightbox closes
  onImageView: (data) => {}, // Called when viewing an image (including on open)

  // Custom behavior functions (advanced)
  initFunction: (vistaView) => {},       // Custom initialization
  setupFunction: (data) => {},           // Custom setup when navigating
  transitionFunction: (data) => image,   // Custom transition animation
  closeFunction: (vistaView) => {},      // Custom cleanup on close
});

Default Controls

| Control | Description | | --------------------- | ----------------------------------------- | | indexDisplay | Shows current image index (e.g., "1 / 5") | | zoomIn | Zoom into the image | | zoomOut | Zoom out of the image | | vistaViewDownload() | Download the current image | | close | Close the lightbox | | description | Shows the image alt text |

Custom Controls

Controls are merged with defaults—only the positions you specify are replaced. Provide an object with name, icon, and onClick:

import { vistaView, vistaViewDownload } from 'vistaview';

vistaView({
  elements: '#gallery a',
  controls: {
    topRight: [
      'zoomIn',
      'zoomOut',
      vistaViewDownload(), // Example: Built-in download helper
      {
        name: 'share',
        icon: '<svg>...</svg>',
        onClick: (image) => {
          navigator.share({ url: image.src });
        },
      },
      'close',
    ],
  },
});

Exported Types & Functions

VistaView exports all types for TypeScript users, plus default behavior functions for customization:

import {
  vistaView,
  vistaViewDownload,
  DefaultOptions,
  // Default behavior functions (can be used as starting points)
  defaultInit,
  defaultSetup,
  defaultTransition,
  defaultClose,
  setTouchActions,
  removeTouchActions,
} from 'vistaview';

import type {
  VistaViewParams, // Full options including `elements`
  VistaViewOptions, // Base options (without `elements`)
  VistaViewImage, // Image object: { src, alt?, thumb? }
  VistaViewImageIndexed, // Image with index and DOM references
  VistaViewInterface, // Return type from vistaView()
  VistaViewData, // Data passed to events/functions
  VistaViewSetupFunction, // Type for setupFunction
  VistaViewTransitionFunction, // Type for transitionFunction
  VistaViewCloseFunction, // Type for closeFunction
  VistaViewInitFunction, // Type for initFunction
  VistaViewCustomControl, // Custom control definition
} from 'vistaview';

Styling

VistaView uses CSS custom properties for easy theming:

:root {
  --vistaview-bg-color: #000000;
  --vistaview-text-color: #ffffff;
  --vistaview-background-blur: 10px;
  --vistaview-background-opacity: 0.8;
  --vistaview-animation-duration: 333;
}

Data Attributes

| Attribute | Description | | ---------------------- | ------------------------------------------ | | data-vistaview-src | Full-size image URL (for <img> elements) | | data-vistaview-alt | Alt text for the image | | data-vistaview-thumb | Thumbnail URL (optional) |

Keyboard Navigation

| Key | Action | | --------- | -------------- | | Left | Previous image | | Right | Next image | | Up | Zoom in | | Down | Zoom out | | Esc | Close lightbox |

Browser Support

VistaView works in all modern browsers (Chrome, Firefox, Safari, Edge).

Framework Integration

VistaView provides official bindings for popular frameworks:

  • ReactuseVistaView hook and <VistaView> component
  • Vue 3useVistaView composable and <VistaView> component
  • SvelteuseVistaView hook
  • SoliduseVistaView hook and <VistaView> component
  • Angular — Manual setup example
  • Vanilla JS — Works out of the box

👉 See full framework integration guide

Quick Example (React)

import { useVistaView } from 'vistaview/react';
import 'vistaview/style.css';

function Gallery() {
  const { open, close, next, prev } = useVistaView({ elements: '#gallery a' });
  return (
    <div id="gallery">
      <a href="/full.jpg">
        <img src="/thumb.jpg" alt="Photo" />
      </a>
    </div>
  );
}

Last built

vite v6.4.1 building for production...
transforming...
✓ 10 modules transformed.
rendering chunks...

[vite:dts] Start generate declaration files...
computing gzip size...
dist/vistaview.css   9.25 kB │ gzip: 1.64 kB
dist/svelte.js       0.54 kB │ gzip: 0.27 kB
dist/solid.js        1.11 kB │ gzip: 0.52 kB
dist/vue.js          1.29 kB │ gzip: 0.56 kB
dist/react.js        1.54 kB │ gzip: 0.57 kB
dist/vistaview.js   33.64 kB │ gzip: 8.49 kB
[vite:dts] Declaration files built in 1534ms.

dist/vistaview.css   9.25 kB │ gzip: 1.64 kB
dist/svelte.cjs      0.48 kB │ gzip: 0.29 kB
dist/solid.cjs       0.92 kB │ gzip: 0.50 kB
dist/vue.cjs         1.00 kB │ gzip: 0.51 kB
dist/react.cjs       1.25 kB │ gzip: 0.52 kB
dist/vistaview.cjs  26.72 kB │ gzip: 7.56 kB
✓ built in 1.77s
vite v6.4.1 building for production...
transforming...
✓ 6 modules transformed.
rendering chunks...

[vite:dts] Start generate declaration files...
computing gzip size...
dist/vistaview.css      9.25 kB │ gzip: 1.64 kB
dist/vistaview.umd.js  26.88 kB │ gzip: 7.66 kB
[vite:dts] Declaration files built in 1525ms.

License

MIT