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

svgs2fonts-c

v1.0.10

Published

On the basis of 'svgs2fonts' dependency, the corresponding CSS file is added to facilitate the introduction. At the same time, parameters are added to optimize the generation of results

Downloads

5

Readme

svgs2fonts-c

svgs2fonts依赖基础上增加了生成相应的css文件,便于引入,同时增加了参数,优化结果生成。svg icons to icons fonts(svg,ttf,eot,woff,woff2) 修改的文件:lib\Builder.js & \constant.js 增加svg图片目录下的遍历目录的,并增加icon对应的前缀

svgs2fonts

svg 图标转字体图标库(svgs fonts -> svg,ttf,eot,woff,woff2)。 github(中文)

Version

1.0.6

Install

1.global install

npm i -g svgs2fonts

check

svgs2fonts -v

2.module install

npm i --save svgs2fonts

Usage

1. module import

const svgs2fonts = require("svgs2fonts");
svgs2fonts.init(options);

options: 请参考: 根目录下,options.js文件

  • src: {String}, svg file dirname;
  • dir: {String}, output files path;
  • fontName: {String}, output icon/font name. Default:"iconfont";
  • startNumber: {Number}, unicode start number. Default: 10000
  • noDemo: {Boolean}, whether to create demo HTML. Default: false;
  • debug: {Boolean}, whether to open debug model. Default: false;
  • timeout: {Number}, run timeout. Default: 60s(60000
demo
const svgs2fonts = require("svgs2fonts");
const join = require("path").join;

svgs2fonts
  .init({
    src: __dirname, // svg path
    dist: join(__dirname, "dest"), // output path
    fontName: "myIconfont", // font name
    startNumber: 20000, // unicode start number
    noDemo: true, // no demo html files
    debug: true, // open debug
  })
  .then(() => console.log("task success!"))
  .catch((err) => console.log(`task failed(${err})`));

2.cmd

svgs2fonts {{srcpath}} {{distpath}} {{options}}
  • srcpath: svg file dirname, "" -> now dirname path;
  • distpath: output files path;
  • options: configurations.
example
svgs2fonts svg dist

options:

-n / --name

font icon's name(default: iconfont).

example
svgs2fonts svg dist -n myiconfont

--number

unicode start number(default: 10000).

example
svgs2fonts svg dist --number 50000

--nodemo

no demo html.

example
svgs2fonts svg dist --nodemo

--debug

whether to open debug model(default: false).

example
svgs2fonts svg dist --debug

Author

Micheal Wayne

Update list

  • 1.0.6: fix IE8 bug;
  • first version: 2018.08.26