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

@novahelm/media

v2026.6.1

Published

NovaHelm media — image/video processing (Sharp, ffmpeg).

Readme

@novahelm/media

Media components and server-side image processing for NovaHelm — optimized React components for images, video, and galleries, plus Sharp-based processing with variant generation, blur placeholders, and EXIF stripping.


Quick Start

pnpm add @novahelm/media

Components

import { NovaImage, NovaVideo, NovaGallery } from "@novahelm/media";

// Optimized image with blur placeholder
<NovaImage
  src="/uploads/photo.jpg"
  alt="A photo"
  width={800}
  height={600}
  blurDataUrl="data:image/jpeg;base64,..."
/>

// Video player
<NovaVideo src="/uploads/demo.mp4" poster="/uploads/poster.jpg" />

// Image gallery with lightbox
<NovaGallery images={mediaRecords} columns={3} />

Responsive Images

import { ResponsiveImage } from "@novahelm/media";

<ResponsiveImage
  src="/uploads/hero.jpg"
  alt="Hero"
  sizes="(max-width: 768px) 100vw, 50vw"
  variants={mediaRecord.variants}
/>

Server-Side Processing

Import from @novahelm/media/server (or the main entry) for Sharp-based processing:

import {
  processImage,
  generateVariants,
  generateBlurDataUrl,
  getImageMetadata,
  stripExif,
  DEFAULT_VARIANTS,
} from "@novahelm/media";

// Process and optimize an image
const result = await processImage(buffer, {
  maxWidth: 2000,
  quality: 85,
  format: "webp",
});

// Generate multiple size variants (thumbnail, small, medium, large)
const variants = await generateVariants(buffer, DEFAULT_VARIANTS);

// Generate a tiny blur placeholder for instant loading
const blurDataUrl = await generateBlurDataUrl(buffer);

// Read image metadata (dimensions, format, color space)
const meta = await getImageMetadata(buffer);

// Strip EXIF data for privacy
const clean = await stripExif(buffer);

API Reference

| Export | Description | |--------|-------------| | NovaImage | Optimized image component with blur placeholder | | NovaVideo | Video player component | | NovaGallery | Image gallery with lightbox | | ResponsiveImage | Responsive <picture> with srcset from variants | | processImage(buf, opts) | Resize, convert, optimize an image | | generateVariants(buf, presets) | Generate multiple size variants | | generateBlurDataUrl(buf) | Create base64 blur placeholder | | getImageMetadata(buf) | Read dimensions, format, color info | | stripExif(buf) | Remove EXIF metadata | | DEFAULT_VARIANTS | Built-in variant presets (thumbnail, small, medium, large) |