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

@zhuyingfe/vue-cli-plugin-zhuying-backend

v1.0.0

Published

助赢中后台项目模板

Downloads

7

Readme

助赢中后台模板

使用

使用模板

在用vue初始化的项目目录中执行以下命令拉取模板

# 首先创建项目
vue create --preset zhuying projectName
# 然后进入projectName 目录下执行:
# 注意,此命令只需要执行一次就行,多次执行会多吃插入iview的引用,导致语法错误
vue add @zhuyingfe/zhuying-backend

项目模板目录结构

该目录会直接替换工程目录src目录内容,安装完成后可在此基础上根据个人习惯修改,如果不希望被覆盖,请提前提交git

├── document.md
└── src
    ├── App.vue         # 主入口
    ├── router
    │   ├── routes.js   # 路由们
    │   └── index.js
    ├── service
    │   ├── api.js      # api接口地址
    │   └── index.js
    └── utils
        ├── axios.js    # 请求拦截
        ├── index.js
        ├── request.js  # 封装的网络请求
        └── util.js     # 工具库

提供依赖列表

为当前最新版本依赖,持续更新

"axios": "^0.18.0"          # 数据请求
"dayjs": "^1.8.11"          # 日期处理
"iview": "^3.3.3"           # 组件库
"qs": "^6.7.0"              # 查询参数格式化
"url-pattern": "^1.0.3"     # 处理url查询参数

调试插件

提供本地调试vue插件的方法,需要一个测试的工程配合 vue create [project-name]

# 拉取代码到本地,npm 安装本地目录

npm i local_plugin -S


# 进入测试项目执行 vue 命令

vue invoke vue-cli-plugin-xx

# 完成安装后可以看到效果

参考

[email protected] Commit message