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 🙏

© 2026 – Pkg Stats / Ryan Hefner

comconfig

v0.1.0

Published

``` npm install ```

Downloads

30

Readme

5G切片自服务平台

安装依赖

npm install

启动项目

npm run serve

编译打包

前缀为/,部署到html根目录

npm run build

前缀为/newportal/,部署到二级目录

npm run build:prod

element-ui 换肤功能使用说明

  • 1.安装 elementui 主题工具 npm i element-theme -g
  • 2.安装 chalk 主题 npm i element-theme-chalk -D
  • 3.安装 gulp 及相关依赖,npm install gulp gulp-clean-css gulp-css-wrap,这个工具可以对 css 样式进行包裹
  • 4.在根目录创建一个 gulpfile.js 文件,目前已经创建好,具体修改内容文件中已写明
  • 5.初始化主题变量文件,运行命令et -i,会在根目录生成一个 element-variables.scss 文件
  • 6.在这个 element-variables.scss 文件里可以修改主题颜色,进行主题配置
  • 7.编译生成主题文件,运行命令et ,会在根目录生成一个 theme 文件夹,里面包含按照主题变量文件配置生成的主题
  • 8.修改gulpfile.js文件,将里面主题色色值做对应修改,即修改打包后目录名和selector名
  • 9.运行 gulp css-wrap 命令,输出包裹后的主题文件夹,文件夹位置在src/assets/css/theme下
  • 10.字体文件已经在index.css引入,不需额外引入
  • 11.在 src/assets/css/theme/index.scss 中引入生成的文件,并且在对应的主题 vue 文件中,添加新增的主题颜色(或在数据库CONF_PARAM表中SELF_THEME_CODE字段配置颜色)
  • 12.添加新的主题重复 6-11 步即可