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

@rainbow-fe/rainbow-template-pc

v1.0.1

Published

Rainbow PC 端 Vue3 + TypeScript 模板

Readme

OWMS基础模板

项目背景

基础应用(库存管理,基础管理、数据中心、工单)

项目简介

项目功能

技术准备

目录结构

owms-receipt
├─ .env               # 通用环境
├─ .env.development   # 开发环境
├─ .env.production    # 生产环境
├─ .env.staging       # 预发布环境
├─ .eslintrc.js       # eslint
├─ .stylelintrc       # stylelint
├─ README.md
├─ .husky             # git钩子
├─ build              # vite构建配置
├─ cypress            # E2E测试
├─ dist               # 打包dist
├─ mock               # mock服务
├─ public             # 静态资源
├─ src                # 源码
│  ├─ antdv           # ts 声明
│  ├─ api             # 接口请求
│  ├─ composabels     # Hooks
│  ├─ monitor         # 异常监控
│  ├─ assets          # 图片等媒体资源
│  ├─ components      # 公共组件
│  ├─ settings        # 项目配置
│  ├─ enums           # 常量
│  ├─ directives      # 全局指令
│  ├─ layout          # 全局Layout
│  ├─ locales         # 国际化
│  ├─ plugins         # 插件
│  ├─ router          # 路由
│  ├─ store           # vuex状态管理
│  ├─ styles          # 全局样式
│  ├─ utils           # 全局公共方法
│  └─ views           # 所有业务页面
├─ types              # ts声明
├─ tests              # 测试
├─ tsconfig.json      # ts 编译配置
├─ jest.config.js     # jest 配置
├─ commintlint.config.js  # git提交校验规则配置
├─ vite.config.ts     # vite 配置

安装使用

  • 获取代码
git clone http://git.eminxing.com/fbu-web/wcs/wds-ui.git
  • 安装依赖
cd wds-ui

npm install
  • 运行
npm run dev
  • 打包
# 线上包
npm run build