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

kezhi-ui

v3.0.2

Published

科致管理系统

Readme

开发

# 克隆项目
git clone https://gitee.com/kezhitiantang/kezhi-cloud.git

# 进入项目目录
cd kezhi-ui

*************************************************
Windows环境步骤:
1. npm install -g yarn
2. yarn install;
3. npm run install-all;
4. npm run start-all
*************************************************

*************************************************
Linux环境步骤:
# 安装依赖 | 执行此步则无需执行下一步(上下两条任选一条进行执行)
yarn install && npm-run-all install:*
yarn install; npm run install-all

# 只安装各模块依赖 | 可以运行npm 脚本 install-all
npm-run-all install:*

# 启动服务 | 可以运行npm 脚本 的start-all(上下两条任选一条进行执行)
npm-run-all --parallel start:*
npm run start-all
*************************************************

浏览器访问 http://localhost:80

发布

# 构建主模块的生产环境
cd main && vue-cli-service build

# 构建租户管理模块的生产环境
cd administrator && vue-cli-service build

# 构建全部模块的生产环境 | 可以运行npm 脚本 的build-all
concurrently "cd administrator && vue-cli-service build" "cd main && vue-cli-service build"

前端结构

kezhi-ui              // 前端框架 [80、81]
├── common                            // 公共组件
│     ├── src                         // 源代码
│          ├── api                    // 全局公用请求
│          ├── assets                 // 主题 字体等静态资源
│          ├── components             // 全局公用组件
│          └── utils                  // 全局公用方法
│     └── package.json                // package.json
│
├── main                              // 默认系统 [80]
│     ├── build                       // 构建相关  
│     ├── bin                         // 执行脚本
│     ├── public                      // 公共文件
│          ├── favicon.ico            // favicon图标
│          └── index.html             // html模板
│     ├── src                         // 源代码
│          ├── api                    // 所有请求
│          ├── directive              // 全局指令
│          ├── layout                 // 布局
│          ├── router                 // 路由
│          ├── store                  // store管理
│          ├── utils                  // 公用方法
│          ├── views                  // view
│          ├── App.vue                // 入口页面
│          ├── main.js                // 入口 加载组件 初始化等
│          ├── permission.js          // 权限管理
│          └── settings.js            // 系统配置
│     ├── .editorconfig               // 编码格式
│     ├── .env.development            // 开发环境配置
│     ├── .env.production             // 生产环境配置
│     ├── .env.staging                // 测试环境配置
│     ├── .eslintignore               // 忽略语法检查
│     ├── .eslintrc.js                // eslint 配置项
│     ├── .gitignore                  // git 忽略项
│     ├── babel.config.js             // babel.config.js
│     ├── package.json                // package.json
│     └── vue.config.js               // vue.config.js
│
├── administrator                     // 租管系统 [81]
│     ├── build                       // 构建相关  
│     ├── bin                         // 执行脚本
│     ├── public                      // 公共文件
│          ├── favicon.ico            // favicon图标
│          └── index.html             // html模板
│     ├── src                         // 源代码
│          ├── api                    // 所有请求
│          ├── directive              // 全局指令
│          ├── layout                 // 布局
│          ├── router                 // 路由
│          ├── store                  // store管理
│          ├── utils                  // 公用方法
│          ├── views                  // view
│          ├── App.vue                // 入口页面
│          ├── main.js                // 入口 加载组件 初始化等
│          ├── permission.js          // 权限管理
│          └── settings.js            // 系统配置
│     ├── .editorconfig               // 编码格式
│     ├── .env.development            // 开发环境配置
│     ├── .env.production             // 生产环境配置
│     ├── .env.staging                // 测试环境配置
│     ├── .eslintignore               // 忽略语法检查
│     ├── .eslintrc.js                // eslint 配置项
│     ├── .gitignore                  // git 忽略项
│     ├── babel.config.js             // babel.config.js
│     ├── package.json                // package.json
│     └── vue.config.js               // vue.config.js
│   
├── initialized                       // 空模板,用于复制新增模块
│
├── .gitignore                        // git 忽略项
└── package.json                      // package.json