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

@ztjy/antd-vue-admin

v1.0.0-beta.12

Published

基于 ant-design-vue 和 @ztjy/antd-vue 封装的运营管理后台公共库。

Downloads

38

Readme

@ztjy/antd-vue-admin

基于 ant-design-vue 和 @ztjy/antd-vue 封装的运营管理后台公共库。

技术栈

项目结构

.
├── .storybook                              # Storybook 配置
├── examples                                # 示例代码
├── public                                  # 示例入口
├── src                                     # 源代码
│   ├── api                                 # 接口请求模块
│   ├── assets                              # 静态资源
│   ├── components                          # 公共组件
│   ├── config                              # 应用配置
│   ├── store                               # vuex store
│   ├── utils                               # 工具函数
│   ├── App.tsx                             # 应用组件
│   └── index.ts                            # 源代码模块导出
├── stories                                 # Sotrybook
├── .browserslistrc                         # 兼容配置
├── .editorconfig                           # 编辑器配置
├── .eslintrc.js                            # ESLint 配置
├── .prettierrc                             # Prettier 配置
├── README.md                               # 项目说明
├── babel.config.js                         # 编译配置
├── package.json                            # 项目配置
├── tsconfig.json                           # TS 配置
├── vue.config.js                           # Vue 配置
└── yarn.lock                               # 依赖版本锁

编码规范

  • Git 提交规范:https://www.conventionalcommits.org/zh-hans/v1.0.0/

    ps:需要严格按照提交规范执行,最终发布版本会以提交记录里的 feat、fix 和 BREAKING CHANGE 决定要升级的版本号。

    • fix:升级 x.y.z 的小版本号 z
    • feat:升级 x.y.z 的中间版本号 y
    • BREAKING CHANGE:升级 x.y.z 的主版本号 x
  • Git 分支规范:

    • master:主分支,用于发布模块的正式版本 x.x.x
    • beta:预发分支,用于发布模块的预发版本 x.x.x-beta.x
    • alpha:测试分支,用于发布模块的测试版本 x.x.x-alpha.x
    • feature/x.x.x:版本分支
    • feature/xxx:功能分支

    开发新版本的时候建立对应版本的 feature/x.x.x 分支,多人协同时需要建立各自负责功能的分支 feature/xxx,开发完成后合并到版本分支 feature/x.x.x,发布测试和预发时将版本分支合并到 alpha 或 beta,然后执行 npm run release。如果发布正式版本 x.x.x,需要对应项目负责人将版本分支 feature/x.x.x 合并到 master,然后执行 npm run release

  • 编码规范

    • JS:ESLint + Prettier
    • CSS:遵循 BEM 规范命名 CSS 选择器,尽量少用后代选择器。

开发说明

  1. 切换到当前开发的版本分支:feature/x.x.x
  2. 如果有多人协同开发,建议建立对应的功能分支 feature/xxx
  3. 按照编码规范和 Git 提交规范调整项目,然后合并和提交到对应的版本分支

代码示例

$ yarn run serve

Storybook

$ yarn run storybook

发布说明

  • 测试和预发

    1. 合并版本分支 feature/x.x.x 到 alpha 或 beta

      ps:目前只用 beta 就好。

    2. 执行发布命令 npm run release

  • 正式发布

    1. 联系项目负责人,将版本分支 feature/x.x.x 合并到 master
    2. 执行发布命令 npm run release