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

@svgjs/cli

v1.1.15

Published

* 是什么?

Downloads

27

Readme

Svg2Js

  • 是什么?

一个用来处理项目中 svg 图标的命令行脚本

  • 做什么?

优化和管理项目中的 svg 图标:

  1. 通过命令的方式优化 svg 图标并生成一个 svgSprite
  2. 随时预览项目中的 svg 图标,统一管理
  • 好处?
  1. no build、no config,无构建时的相关配置,比如 svg-sprite-loader
  2. 可在需要时执行一个命令即可将项目中的 svg 图标进行优化处理,一般可大大降低文件体积
  3. 随时预览和管理项目中所有的图标
  4. 通过脚本的方式,提前优化图标、提取关键信息、颜色处理等,避免 inline svg 模式下在运行时做这些处理,可提高运行效率
  5. 更优雅的 svg 颜色控制方案

Usage

可全局安装即可使用 svg2js 命令,也可以直接使用 npx @svgjs/cli 临时使用,不过更推荐安装在项目里,在 scripts 里配置一个相对固定的命令,在日常开发中可随时使用

Install

npm i -D @svgjs/cli

SvgSprite

在 package.json 的 scripts 里添加一个命令,如:

{
  "build:svg": "svg2js build -e src/assets -o src/js"
}

将 src/assets 目录下的 svg 图标进行优化处理后生成一个 svg-sprite.js 文件到 src/js 目录下,后续需求迭代如果对图标有进行增删改的操作,同样执行这个命令即可

SvgPreview

在 package.json 的 scripts 里添加一个命令,如:

{
  "preview:svg": "svg2js preview -e src/assets -o src/js"
}

将 src/assets 目录下的 svg 图标进行优化处理后生成一个 html 页面,打开即可预览项目中的所有图标,项目中图标文件较多时比较方便找图标

作为依赖包开发应用

import Svg2js from '@svgjs/cli';

const svg2js = new Svg2js(entryFolder, option);
  • entryFolder string svg 文件的入口目录,相对目录,不能是 . / \ 开头
  • option

| 名称 | 类型 | 默认值 | 说明 | | --- | --- | --- | --- | | nameSep | string | - | 当目录中存在多层文件夹时,为了避免不同目录中文件重名,默认会将目录名作为前缀,用于设置文件夹之间的分隔符 | | spriteId | string | svg_sprite_created_by_svg2js | 生成 svg-sprite 时用来设置其 id | | outputFolder | string | svg2js-preview | 设置生成的文件所在的目录 | | plugins | array | [] | 可以通过插件对每个 svg 进行额外的一些处理 | | setFileName | function(defaultFileName, nameSep) | -- | 设置文件名 |

  • 核心函数

    • svg2js.addPlugin(plugin) 添加用于处理 svg 文件的插件
    • svg2js.optimizeSvg() 查找 svg 文件并一一进行处理
    • svg2js.outputSpriteJS() 生成一个包含所有 svg 的 svg-sprite 文件,导入到项目中可直接使用
    • svg2js.outputPreviewHtml() 生成一个点击即可预览的 html 页面

预处理:运行时提效

  1. 类似于 vue template 在 compile 时会进行一些代码的优化处理,提高 vue 代码的运行效率一样,咱们通过脚本的方式可对项目的 svg 图标全部进行优化处理,将大大缩小文件体积;

  2. 相较于 inline svg 会对 svg 内容进行一些处理来达到一些效果,通过脚本的方式的好处是,可以在此时提取一些 svg 的关键信息,比如宽、高、viewBox等,作为元信息在运行时直接取值即可;

  3. svg 图标的颜色处理一般都稍显复杂,默认颜色、激活时颜色、禁用时颜色等,平时我们在项目开发时可能就是定义一个 class 往里面找到 svg 的 path 节点来改颜色,现在有个便捷的方式就是,在脚本里就提取单色图标的颜色值存为元信息,并替换为 currentColor,那么改图标颜色就跟普通的 css 一样操作了,非常方便;当然,inline svg 也完全可以处理,但是假如你的项目中有大量的使用 svg 图标,其运行效率明显低于脚本处理;