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

@deenruv/asset-server-plugin

v1.0.6

Published

Serves assets (images and other files) from the local file system or cloud storage (e.g. S3), with on-the-fly image transformation (resize, crop, format conversion) and result caching.

Readme

@deenruv/asset-server-plugin

Serves assets (images and other files) from the local file system or cloud storage (e.g. S3), with on-the-fly image transformation (resize, crop, format conversion) and result caching.

Installation

pnpm add @deenruv/asset-server-plugin

Configuration

import { AssetServerPlugin } from '@deenruv/asset-server-plugin';
import path from 'path';

const config = {
  plugins: [
    AssetServerPlugin.init({
      route: 'assets',
      assetUploadDir: path.join(__dirname, 'assets'),
    }),
  ],
};

Options:

| Option | Type | Default | Description | |--------|------|---------|-------------| | route | string | required | URL route for serving assets (e.g. 'assets') | | assetUploadDir | string | required | Local directory for asset storage | | assetUrlPrefix | string \| fn | auto-detected | Complete URL prefix for asset files | | presets | ImageTransformPreset[] | See below | Named image transform presets | | namingStrategy | AssetNamingStrategy | HashedAssetNamingStrategy | Strategy for naming uploaded assets | | previewStrategy | AssetPreviewStrategy | SharpAssetPreviewStrategy | Strategy for generating preview images | | storageStrategyFactory | fn | LocalAssetStorageStrategy | Factory for custom storage backends (e.g. S3) | | cacheHeader | string \| CacheConfig | 'public, max-age=15552000' | Cache-Control header (default: 6 months) |

Image Transformation

Assets can be transformed on-the-fly via URL query parameters:

http://localhost:3000/assets/photo.jpg?w=500&h=300&mode=resize

Query Parameters:

| Param | Description | |-------|-------------| | w | Target width in pixels | | h | Target height in pixels | | mode | crop (cover) or resize (contain) | | preset | Named preset (e.g. ?preset=thumb) | | fpx, fpy | Focal point (0-1 normalized coordinates) for crop mode | | format | Output format: jpg, png, webp, avif | | q | Quality (1-100, default: 80 for jpg/webp, 50 for avif) | | cache | Set to false to skip caching |

Default Presets

| Name | Width | Height | Mode | |------|-------|--------|------| | tiny | 50px | 50px | crop | | thumb | 150px | 150px | crop | | small | 300px | 300px | resize | | medium | 500px | 500px | resize | | large | 800px | 800px | resize |

Custom presets can be added via the presets option:

AssetServerPlugin.init({
  route: 'assets',
  assetUploadDir: path.join(__dirname, 'assets'),
  presets: [
    { name: 'hero', width: 1200, height: 600, mode: 'crop' },
  ],
});

Features

  • On-the-fly image resize and crop via URL query parameters
  • Format conversion (JPEG, PNG, WebP, AVIF)
  • Quality control for lossy formats
  • Focal point-aware cropping
  • Named transform presets
  • Transformed image caching for subsequent requests
  • Configurable Cache-Control headers
  • S3-compatible cloud storage via S3AssetStorageStrategy
  • Hashed asset naming for cache busting
  • Sharp-based image processing
  • Content-type detection with fallback

Admin UI

Server-only plugin. No Admin UI extensions.

API Extensions

No GraphQL API extensions. Assets are served via Express middleware at the configured route.