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

iconfontcn

v1.1.0

Published

Kiss Iconfont

Downloads

1

Readme

iconfontcn

Kiss Iconfont.

安装 iconfontcn

npm install -g iconfontcn

iconfontcn 有什么用

  1. 简化 iconfont 的使用
  2. 提供了更灵活的 Icon 组件

iconfont 是什么?

阿里妈妈 MUX 倾力打造的矢量图标管理、交流平台,设计师将图标上传到 iconfont 平台,用户可以自定义下载多种格式的 icon,平台也可将图标转换为字体,便于前端工程师自由调整与调用。

iconfont 的 Web 端使用方式

https://www.iconfont.cn/help/detail?spm=a313x.7781069.1998910419.d8cf4382a&helptype=code

  1. unicode 引用
  2. font-class 引用
  3. symbol 引用,全新的使用方式,未来的主流

通过 iconfontcn 使用 iconfont

  1. 查看 iconfont 项目的 Font Family、FontClass/Symbol 前缀信息

    iconfont.cn > 资源管理 > 我的项目 > 更多操作 > 编辑项目

  2. 查看 iconfont 项目的 Font class/Symbol

    iconfont.cn > 资源管理 > 我的项目 > Font class / Symbol

  3. 项目 index.js 中初始化 iconfontcn(只需要初始化一次)

    import Iconfont from "iconfontcn";
    
    // init参数说明
    //Iconfont.init("Font class/Symbol地址", "FontClass/Symbol 前缀", "Font Family");
    
    // font-class引用
    Iconfont.init("font_2043983_voy5aew0vz.css", "t-", "testfont");
    
    // symbol引用
    Iconfont.init("font_2043983_voy5aew0vz.js", "t-");
  4. Icon 组件属性和使用

    | 属性名 | 类型 | 说明 | | --------- | ---------------- | ------------------------ | | code | string | 图标的代码 | | size | number | string | 图标的大小,优先级最高 | | color | string | 图标的颜色,优先级最高 | | style | object | 行内样式,优先级第二 | | className | string | 外部引用 css,优先级第三 |

    import { Icon } from "iconfontcn";
    
    <Icon code="offer" size="18"/>

不通过 iconfontcn 加载 js 或 css,使用 Icon 组件

如果项目中使用本地资源或者在 index.html 中加载了 iconfont 的 css 或 js,也可以使用 iconfontcn 的 Icon 组件,需要在 index.js 中配置 iconfontcn(只需要配置一次),注意 iconfont 的引用方式。

import Iconfont from "iconfontcn";

// config参数说明
//Iconfont.config("i | svg", "FontClass/Symbol 前缀", "Font Family");

// font-class引用,第一个参数传 i
Iconfont.config("i", "t-", "testfont");

// symbol引用,第一个参数传 svg
Iconfont.config("svg", "t-");
import { Icon } from "iconfontcn";

<Icon code="offer"/>

Hope you will like !