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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@maddsua/ssg-assets

v4.0.3

Published

Converts media assets for your static website and provides handy components fro React, Astro and Vue

Downloads

485

Readme

Image optimization tool for static websites, apps and so on

Convert images to modern formats, with blackjack and caching included. Yeah, right, that's some ISR-like performance gains for your avif's and webp's.

Makes a bunch of avif's and webp's from jpeg's, png's and such.

* If you're using Netlify, be sure to enable netlify-plugin-cache to get the max speeed out of builds!

CLI

After installing the package you'll be able to use ssga CLI tool. It's basically a cool-kid's launcher for sharp (image conversion library).

By default the cli looks for config files in project directory. Default config names are: (ssgassets|ssga).config.(json|js|mjs|ts|mts), eg. ssga.config.json.

Custom config files can be specified with --config argument.

Configuration

Sample config file:

import type { Config } from '@maddsua/ssg-assets';

export const config: Config = {
	verbose: true,
	inputDir: './assets',
	outputDir: './dist',
	formats: ['avif', 'webp', 'jpg'],
	exclude: [
		'**/vector/*.svg'
	]
}

Comman line flags

  • config (string): Config file location
  • verbose (boolean): Enables verbose logging
  • clearCache (boolean): Resets asset cacse
  • clearDist (boolean): Cleares all files from dist dir before copying new assets
  • noCache (boolean): Disables asset cache
  • inputDir (string): Input directory path
  • outputDir (string): Output directory path

Usage example

ssga --config=./tests/convert/ssgassets.config.json --verbose

Frontend components

Having multiple image formats is fun, but placing all the source tags for a picture is not. So here, have these UI framework components:

  • Vue
  • React/Preact
  • Astro
  • Svelte
  • HTML (renders directly to HTML text, intended for server use)
  • DOM (JS-native functions, creates HTMLElements that can be inserted into actual DOM)

Don't try to import package's root directly, instead import the subpath for the framework you're using.

Component import path: @maddsua/ssg-assets/[framework].

For instance, this is how you import a Picture component for Vue:

import { Picture } from '@maddsua/ssg-assets/vue';

Cache invalidation for static hostings

There are cases where you'd want browser to reset it's image cache but a hosting provider does not provide an easy way to do it. The solution here is to change image's url search params so that on each deploy it will be different thus forcing browser to re-download assets.

In order to activate this feature make sure that your bundler replaces string literal __SSGA_DEPLOY_CACHE_HASH__ with a unique deploy identifier. Or a random string. Here's an example how it's done using Vite when deploying from GitLab:

...
define: {
  __SSGA_DEPLOY_CACHE_HASH__: process.env['CI_COMMIT_SHA']?.slice(0, 8)
}
...

If stuff does not work

Your bundler/compiler may choke on this, so try using this config line for Webpack:

...
transpilePackages: ['@maddsua/ssg-assets']
...

or this one for Vite:

...
ssr: {
  noExternal: '@maddsua/ssg-assets'
}
...