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

svg-blur-up

v3.0.0

Published

A tool that generates image previews.

Downloads

50

Readme

Blur Up

CI Version

A tool that creates a small, optimized version of an input image and embeds it in an SVG file. The generated SVG file scales the integrated image up to its original dimensions and applies a blur filter to create a high quality preview of the original image. Such preview SVGs can be used as temporary substitutes for images that take longer to load.

| Preview SVG | Original Image | |-------------|------------------| | 1086 Bytes | 402.15 Kilobytes | | | |

Installation

npm install svg-blur-up

Usage

Command Line Interface (CLI)

The command line tool can be invoked using the blur-up command:

blur-up -i images/* -o previews -c configs/blur-up.json

You may provide a configuration via package.json or as a standalone file. If there is no configuration in package.json, the tool will look for a configuration file with the default name .blur-up.json in the current working directory. Please refer to the Options section for more information.

| Option | Shorthand | Description | |----------------|-----------|--------------------------------------------| | --input | -i | Specifies the input path or glob pattern | | --output | -o | Specifies the output directory | | --config | -c | Specifies an alternative config path |

JavaScript API

The blurUp function returns a Promise.

import blurUp from "svg-blur-up";

// The input path must describe a single file.
blurUp("images/bg.jpg", "output/dir", options)
  .catch((e) => console.error(e));

Output

Each individual image will be wrapped in an SVG construct of the following form:

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
  width="IMG_WIDTH" height="IMG_HEIGHT" viewBox="0 0 VIEW_WIDTH VIEW_HEIGHT" preserveAspectRatio="none">
  <filter id="blur" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
    <feGaussianBlur stdDeviation="STD_DEVIATION_X STD_DEVIATION_Y" edgeMode="duplicate" />
    <feComponentTransfer><feFuncA type="discrete" tableValues="1 1" /></feComponentTransfer>
  </filter>
  <image filter="url(#blur)" x="0" y="0" height="100%" width="100%" xlink:href="IMG_DATA_URI" />
</svg>

Note: The generated SVG file will be minified.

Options

| Option | Default | Description | |---------------|----------|--------------------------------------------| | input | - | Can be a single path or an array of paths | | output | - | A path that describes a file or directory | | stdDeviationX | 20 | The blur strength along the X-axis | | stdDeviationY | 20 | The blur strength along the Y-axis | | width | auto, 40 | The width of the preview image | | height | auto | The height of the preview image |

The command line options --input and --output overwrite the respective fields in the configuration.

If only width or height is specified, the counter part will be calculated automatically to preserve the original aspect ratio. If both of these fields are undefined, width will be set to 40 and height will be adjusted accordingly.

.blur-up.json

{
  "input": "images/*.{bmp,jpg,png}",
  "output": "images/previews",
  "stdDeviationX": 10,
  "stdDeviationY": 10,
  "width": 30
}

package.json

{
  "blurUp": {
    "input": ["path/to/img/*.jpg", "other/path/*.png"],
    "output": "output/dir"
  }
}

blur-up.js

import blurUp from "svg-blur-up";

blurUp("path/to/img.jpg", "output/dir", {
  stdDeviationX: 5,
  stdDeviationY: 5
}).catch((e) => console.error(e));

Contributing

Maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.