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

svgfont-webpack-plugin

v1.0.2

Published

svgicon-webpack-plugin

Downloads

2

Readme

svgfont-webpack-plugin

本插件目的是改善前端项目中使用svg图标及web字体的开发体验。 插件根据配置,在webpack构建时收集项目中使用到到图标,然后根据这些svg图标,生成字体资源。并输出到html。

插件内置大量SVG图标集,同时支持项目本地图标使用 插件最终生成资源包括:

iconfont.css
iconfont.eot
iconfont.js
iconfont.less
iconfont.svg
iconfont.symbol.svg
iconfont.ttf
iconfont.woff
iconfont.woff2

注意: 1.本插件需与html-webpack-plugin配合使用。 2.svg文件名即为iconName。的唯一标识id、font-class 名格式为 ${fontName}-${iconName}。 3.所有svg,width,height应当保存一致。

Depenance

html-webpack-plugin

Installation

npm

npm install svgfont-webpack-plugin

run demo

$ git clone https://github.com/demonray/svgfont-webpack-plugin.git
$ cd svgfont-webpack-plugin
$ npm install
$ npm run dev

Usage

webpack 配置示例子,如下:

// webpack.config.js
const  path = require('path');
const  SvgFontWebpackPlugin = require('svgfont-webpack-plugin');
const  HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
    // ...
    plugins: [
        new HtmlWebpackPlugin({
            template: 'index.html'
        }),
        new SvgFontWebpackPlugin({
            inject: 'script',
            fontName: 'iconfont',
            pattern: '**/*.html',
            rules: [{
                match: /<i.*class=".*iconfont-([0-9a-zA-Z_-]*)".*>/,
                ext: /\.html$/
            }],
            iconNames: ['wind','xhs'],
            svgsDir: path.join(__dirname, 'icons') // svg file directory
        })]
}

配置

inject

  • 类型: string
  • 默认值: 'script'
  • 可选值 'link','script'

inject: 'link'

通过font-class方式使用web字体, 插件会将生成的css文件插入index.html。

inject: 'script'

symbol方式引用,插件会将生成iconfont.js插入index.html。

fontName

  • 类型: string
  • 默认值: 'iconfont'

字体文件名称,最终用于生成字体资源文件的文件名。

pattern

  • 类型: string
  • 必须:

glob options 匹配用于需要搜索的文件,找出使用的图标。

rules

  • 类型: Array
  • 默认值: []

匹配规则

iconNames

  • 类型: Array
  • 默认值: []

svg图标文件名,支持定义图标名,iconNames里的图标名称会和插件rules匹配出的图标名合并,生成web字体等资源文件。

svgsDir

  • 类型: string
  • 默认值: 'link'

项目svg文件目录,如配置,则插件优先使用此目录里的 ${iconName}.svg SVG文件。此目录未找到会在插件内置图标集里寻找。