# 安装 Cli

安装 dolphin weex cli

npm install -g dolphin-weex-cli
 # 检测是否安装成功
dolphin --version 或者 dolphin --help 出现相关的版本和帮助信息即代表安装成功。
1
2
3

升级

#升级到最新版本
npm install -g dolphin-weex-cli@latest
# 或
# 升级到指定0.3.3版本
npm install -g dolphin-weex-cli@0.3.3 

# 检测是否安装成功
dolphin --version 或者 dolphin --help 出现相关的版本和帮助信息即代表安装成功。
1
2
3
4
5
6
7
8

使用说明

# 以默认模版创建 weex 项目

dolphin create 或者 dolphin c , 然后根据命令行的提示输入相关的信息,即可完成代码的配置和初始化。
? Project name: (weex-demo-project): 自定义<项目名称>
❯ template : 模版一:通用模版(支持)
router: 模版二:定制模版(支持vue-router)
sample. : 模版三: 插件 demo
? version: (0.0.1)<版本信息>
? description: (A weex project with dolphin weex ui): <描述>
? author : <作者>
1
2
3
4
5
6
7
8

# 添加自定义项目模版到本地目录,类似于喜爱收藏功能。

dolphin add 或者 dolphin a , 然后根据命令行的提示输入相关的信息,即可完成自定义模版的收藏功能。
? Set the custom name of the template:     <自定义模版名称>
? Owner/name of the template:     alibaba/weex-ui (示例)
? Owner/name of the template:     <分支名称> 默认分支:master
1
2
3
4

# 查看模版收藏列表

dolphin list 或者 dolphin l , 然后命令行中输入模版列表的表格。
1

# 使用收藏模版创建新项目

dolphin init 或者 dolphin i , 然后根据命令行的提示输入相关的信息完成操作。
? please input template name:   输入收藏列表中的 <模版名称>
? Project name:     自定义的  <项目名称>
? please input the author:     <作者>
? Where to init the project: (./):    创建 <项目路径>  默认是当前目录下
1
2
3
4
5

# 删除收藏模版

dolphin delete 或者 dolphin d
1
Last Updated: 9/5/2020, 11:14:43 AM