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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@saeris/rehype-inline-svg

v0.0.4

Published

A rehype plugin that inlines and optimizes SVG images

Downloads

425

Readme

💠 rehype-inline-svg Build Status npm

A unified / rehype plugin that inlines and optimizes SVG images.

📦 Installation

[!Note]

This library is distributed only as an ESM module.

npm install @saeris/rehype-inline-svg

or

yarn add @saeris/rehype-inline-svg

✨ Features

  • Replaces SVG <img> tags with inlined <svg> tags
    • Reduces extra HTTP requests to fetch tiny SVG files
    • Gives you fine-grained control of images using CSS
  • Optimizes SVGs using svgo
    • Minimizes download size
    • Removes extra metadata that is added by image editors
  • Caches file reads
    • Each .svg file is only read from disk once and optimized once
    • Improves processing speed when images occur multiple times on a page
    • Improves processing speed when processing multiple HTML pages

🔧 Usage

Using this library will depend on your particular application or framework. Below is a bare-bones example to test it in Node.

Node:

import unified from "unified";
import rehypeParse from "rehype-parse";
import rehypeInlineSVG from "@saeris/rehype-inline-svg";
import rehypeStringify from "rehype-stringify";
import vfile from "to-vfile";

const result = await unified()
  .use(rehypeParse)
  .use(rehypeInlineSVG)
  .use(rehypeStringify)
  .process(await vfile.read("index.html"));

console.log(result.value.tostring());
// <html>
//   <body>
//     <svg alt="some icon" viewBox="0 0 48 48"><path d="M5 24c0..."
//   </body>
// </html>

⚙ Options

Rehype Inline SVG supports the following options:

| Option | Type | Default | Description | |-|-|-|-| | maxImageSize | number | 3000 | The maximum image size (in bytes) to inline. Images that are larger than this (after optimization) will not be inlined.Defaults to ~3 kilobytes. | | maxOccurrences | number | Infinity | The maximum number of times that the same image can appear on a page and still be inlined. Images that occur more than this number of times will not be inlined. | | maxTotalSize | number | 10000 | The maximum total size (in bytes) of all occurrences of a single image. If maxTotalSize is 10kb and a 2kb image occurs 5 times on a page, then all five occurrences will be inlined. But if the image accurs 6 or more times, then none of them will be inlined.Defaults to ~10 kilobytes. | | optimize | boolean or object | true | SVG optimization options. If false, then SVGs will not be optimized. If true, then the default optimization options will be used. |

📣 Acknowledgements

This is a separately maintained fork of rehype-inline-svg.

🥂 License

Released under the MIT © Drake Costa