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

esbuild-plugin-inline-image

v0.0.9

Published

[esbuild](https://esbuild.github.io/) plugin for inlining yout images conditionaly on size

Downloads

28,635

Readme

esbuild-plugin-inline-image

esbuild plugin for inlining yout images conditionaly on size

Aka. switches loader for image between file and dataurl depending on size (as in Webpack)

Well, technically can be used even for non images (just set the right extensions), but who would want that?

Instalation

yarn add esbuild-plugin-inline-image

or

npm install esbuild-plugin-inline-image

Usage

Add it to your esbuild plugins list:

const esbuild = require("esbuild");
const inlineImage = require("esbuild-plugin-inline-image");

esbuild.build({
  ...
  plugins: [
    ...
    inlineImage()
  ]
  ...
});

You can then import images

import logo from "../assets/logo.png";

Options

By default it works for jpg, png, gif, svg, webp, avif extensions.

You can customize the options (ie. to disable svg loading if being handled by different plugin)

inlineImage({
  // options
});

Allowed options are:

  • limit: define image limit (in bytes) for size after which the image wll not be inline (default is 10000)

    • limit can also be set from env as IMAGE_INLINE_SIZE_LIMIT
    • setting limit to 0 disables inlining, -1 will always inline
    • in case you pass function, the image will be inlined if it returns true (or Promise that resolves to true)
      • the function get's passed onLoad args
  • extensions: an array of extensions to work on (default is [ "jpg", "jpeg", "png", "gif", "svg", "webp", "avif" ])

  • filter: you can also pass filter for onLoad directly, but in this case you need to manually set esbuild loader option for the extensions to file

  • namespace: custom namespace for the plugin to operate on, default's to built-in file

  • loaderRegisterExtensions: register extensions to esbuild loader? default's to true, set false to disable

Examples

Use plugin multiple times to have different size for different extensions

esbuild.build({
  ...
  plugins: [
    ...
    inlineImage({
      extensions: ["svg", "webp", "avif"]
    }),
    inlineImage({
      limit: 5000,
      extensions: ["jpg", "jpeg", "gif"]
    }),
    inlineImage({
      limit: 2000,
      extensions: ["png"]
    })
  ]
  ...
});

Use function to decide inlining

esbuild.build({
  ...
  plugins: [
    ...
    inlineImage({
      limit: ({ path }) => {
        // inline only svg, other extensions get only loader set to file
        return path.endsWith(".svg");
      }
    }),
  ]
  ...
});

Set limit to -1 to inline all images

esbuild.build({
  ...
  plugins: [
    ...
    inlineImage({
      limit: -1
    })
  ]
  ...
});

Set limit to 0, to disable inlining (extensions will only get registed to loader)

esbuild.build({
  ...
  plugins: [
    ...
    inlineImage({
      limit: 0
    })
  ]
  ...
});

License

Licensed as MIT open source.