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

@kanjianmusic/logos-iconify

v0.2.1

Published

Iconify compatible JSON collection for Kanjian music logos

Readme

@kanjianmusic/logos-iconify

看见音乐平台图标库的 Iconify 格式包。

说明

本图标库为每个平台提供两种版本:

  • 彩色版本{platform}-color - 保持品牌原色,不受 CSS 影响
  • 单色版本{platform} - 使用 currentColor,可通过 CSS 自定义颜色

查看所有可用图标列表,请查看 icons.json 文件。

示例

| 图标名称 | 类型 | 描述 | |---------|------|------| | spotify | 单色 | Spotify 单色图标,可自定义颜色 | | spotify-color | 彩色 | Spotify 品牌色图标 | | apple-music | 单色 | Apple Music 单色图标 | | apple-music-color | 彩色 | Apple Music 品牌色图标 |

💡 提示:目前包含 35+ 音乐平台图标,每个平台都有彩色和单色两个版本。

安装

npm install @kanjianmusic/logos-iconify
# 或
yarn add @kanjianmusic/logos-iconify
# 或
pnpm add @kanjianmusic/logos-iconify

使用方法(以 vue 为例)

1. 引入

App.vue

import { addCollection } from '@iconify/vue';
import kanjianLogos from '@kanjianmusic/logos-iconify';

// 添加图标集合到 Iconify
addCollection(kanjianLogos)

2. 使用

<template>
  <!-- 彩色版本 -->
  <Icon icon="kanjian-logos:spotify-color" />

  <!-- 单色版本,可自定义颜色 -->
  <Icon icon="kanjian-logos:spotify" style="color: #1db954;" />
</template>

<script setup>
import { Icon } from '@iconify/vue'
</script>

VSCode Iconify IntelliSense 插件配置

如果你使用 Iconify IntelliSense 插件,可以添加本地图标集合以获得智能提示。

在项目根目录的 .vscode/settings.json 中添加:

{
  "iconify.customCollectionJsonPaths": [
    "./node_modules/@kanjianmusic/logos-iconify/lib/index.json"
  ]
}

这样你就可以在编辑器中获得图标的智能提示和预览。