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

rollup-plugin-svgpack

v1.0.0

Published

A Rollup plugin for minifying and compressing all SVG files in a specified folder and combining them into an SVG symbol.

Readme

rollup-plugin-svgpack

ENGLISH

介绍

一个 Rollup 插件,用于将指定文件夹内的所有 SVG 精简压缩,并组合为一个 SVG symbol

此插件通常用于打包图标文件,以减少 HTTP 请求的文件数量,提高前端性能。

安装

npm i rollup-plugin-svgpack -D

使用

在 vite.config.js 中配置:

import svgpack from 'rollup-plugin-svgpack'

export default defineConfig({
  plugins: [svgpack()],
})

配置项

| 参数 | 类型 | 说明 | 默认值 | | ------- | --------------- | -------------------- | ------------------------------------------------------------- | | options | SvgPackOption[] | Svg 打包配置(数组) | [{ from: 'src/lib/symbol', to: 'static/icons/symbol.svg' }] |

SvgPackOption 接口

| 参数 | 类型 | 说明 | | ---- | ------------------ | ---------------------------------------------- | | from | string | string[] | 源文件夹。支持多个文件夹打包至同一个 .svg 文件 | | to | string | 目标文件名 |

[SVG symbol] 的使用方法

使用 SVG 标签引入

源 svg 文件: src/lib/symbol/github.svg 目标文件:static/icons/symbol.svg

<!-- HTML -->
<svg width="24" height="24">
  <use href="/icons/symbol.svg#github"></use>
</svg>

使用 Sun Pacakeet 组件库(Svelte 5 移动端 UI 组件库)

// +page.svelte
<script lang="ts">
import { Icon } from 'sun-parakeet'
</script>

<Icon name="github" size={24} />

SVG 文件调整策略

rollup-plugin-svgpack 插件会按照以下策略调整您的 svg 文件

  • 当 fill 属性不为 none/currentColor 时,移除此属性
  • 当 stroke 属性不为 none/currentColor 时,移除此属性

此策略会移除 svg 中原有的颜色值。您可以使用 css 为图标定义颜色

.some-icon {
  /** 直接指定 fill 颜色 */
  fill: yellow;
  /* 直接指定 stroke 颜色 */
  stroke: blue;
  /* 使用 currentColor 传递颜色 */
  color: red;
}

许可证

本项目基于 MIT 许可证