花一晚上,搞个脚手架工具---admin-work-cli

2022-10-28 19:02:08 浏览数 (1)

01

前言

VueAdminWork系列版本到现在为止,已经有6个版本在运行,其中已经免费开源了5个版本。具体的信息如下:

1、开源版,技术栈:vue2 webpack4 javascript element-ui 项目地址: https://github.com/qingqingxuan/vue-admin-work

https://gitee.com/qingqingxuan/vue-admin-work

2、开源版X(Vue Admin Work X),技术栈:vue3 webpack typescript element-plus 项目地址: https://github.com/qingqingxuan/vue-admin-work-x

https://gitee.com/qingqingxuan/vue-admin-work-x

3、开源版ArcoWork(ArcoWork),技术栈:vue3 vite2 typescript arco design 项目地址: https://github.com/qingqingxuan/arco-work

https://gitee.com/qingqingxuan/arco-work

4、开源版Admin Work,技术栈:vue3 vite2 typescript naive-ui

https://github.com/qingqingxuan/admin-work

https://gitee.com/qingqingxuan/admin-work

5、开源版Vue Admin Work A,技术栈:vue3 vite2 typescript AntD https://github.com/qingqingxuan/vue-admin-work-a

https://gitee.com/qingqingxuan/vue-admin-work-a

随着版本的的增多,很多小伙伴下载安装也比较麻烦,每次都需要从git下载。

所以为了解决这方面的问题,本人花了一晚上的时间做了一个脚手架工具:

admin-work-cli 方便大家安装不同的版本。

02

安装

在使用之前首先要在电脑上安装一定的环境:

  • 安装 node: >=14
  • 安装 git

安装

确保以上环境没有问题的前提下,直接使用以下命令进行全局安装

代码语言:javascript复制
npm install admin-work-cli --global

等待以上命令执行完成,再输入:

代码语言:javascript复制
admin-work --versoin

如果出现 1.0.3 或者其它版本号,则说明已经安装成功

03

基本使用

--help
快捷方式

如果您对我们的版本比较熟悉,建议您使用该方式,如果不太熟悉建议使用 create 命令

admin-work <template-name> [project-name]

代码语言:javascript复制
// <template-name> : 版本名称,必填
// [project-name] :项目名称,选填,默认和版本名称保持一致

以 vue-admin-work-x 版本,并且项目叫 my-admin-work-x,为示例:

代码语言:javascript复制
admin-work vue-admin-work-x my-admin-work-x
create(推荐)
代码语言:javascript复制
admin-work create

0 人点赞