CLI.md 6.6 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3
---
sidebarDepth: 2
---
hbcui1984's avatar
hbcui1984 已提交
4 5 6

`uni-app`提供有完整的`cli` 脚手架,可以通过 `vue-cli` 创建、运行、发行 `uni-app` 项目。

D
DCloud_LXH 已提交
7
## CLI 工具安装
hbcui1984's avatar
hbcui1984 已提交
8

D
DCloud_LXH 已提交
9
首先,你需要使用 npm 或者 yarn 全局安装 `@vue/cli`
hbcui1984's avatar
hbcui1984 已提交
10 11 12 13 14

```shell
npm install -g @vue/cli
```

D
DCloud_LXH 已提交
15
## 创建 uni-app 工程
hbcui1984's avatar
hbcui1984 已提交
16

D
DCloud_LXH 已提交
17
- 使用 `正式版`(对应 HBuilderX 最新正式版)
hbcui1984's avatar
hbcui1984 已提交
18 19 20 21 22

  ```shell
  vue create -p dcloudio/uni-preset-vue my-project
  ```

D
DCloud_LXH 已提交
23
- 使用 `alpha版`(对应 HBuilderX 最新 alpha 版)
hbcui1984's avatar
hbcui1984 已提交
24 25 26 27 28

  ```shell
  vue create -p dcloudio/uni-preset-vue#alpha my-alpha-project
  ```

D
DCloud_LXH 已提交
29 30
- 使用 `Vue3/Vite版`
  - 创建以 javascript 开发的工程(如命令行创建失败,请直接访问 [gitee](https://gitee.com/dcloud/uni-preset-vue/repository/archive/vite.zip) 下载模板)
hbcui1984's avatar
hbcui1984 已提交
31 32 33
    ```shell
    npx degit dcloudio/uni-preset-vue#vite my-vue3-project
    ```
D
DCloud_LXH 已提交
34
  - 创建以 typescript 开发的工程(如命令行创建失败,请直接访问 [gitee](https://gitee.com/dcloud/uni-preset-vue/repository/archive/vite-ts.zip) 下载模板)
hbcui1984's avatar
hbcui1984 已提交
35 36 37 38
    ```shell
    npx degit dcloudio/uni-preset-vue#vite-ts my-vue3-project
    ```

D
DCloud_LXH 已提交
39
此时,会提示选择项目模板(使用 `Vue3/Vite版` 不会提示,目前只支持创建默认模板),初次体验建议选择 `hello uni-app` 项目模板,如下所示:
hbcui1984's avatar
hbcui1984 已提交
40 41 42 43 44

<div>
<img src="https://img.cdn.aliyun.dcloud.net.cn/guide/uniapp/h5-cli-01.png" width="300">
</div>

D
DCloud_LXH 已提交
45
- **自定义模板**
hbcui1984's avatar
hbcui1984 已提交
46

D
DCloud_LXH 已提交
47
  选择自定义模板时,需要填写 uni-app 模板地址,这个地址其实就是托管在云端的仓库地址。以 GitHub 为例,地址格式为 `userName/repositoryName`,如 `dcloudio/uni-template-picture` 就是下载图片模板。
hbcui1984's avatar
hbcui1984 已提交
48

D
DCloud_LXH 已提交
49
  更多支持的下载方式,请参考这个插件的说明:[download-git-repo](https://www.npmjs.com/package/download-git-repo)
hbcui1984's avatar
hbcui1984 已提交
50

D
DCloud_LXH 已提交
51
- **国内特殊情况**
hbcui1984's avatar
hbcui1984 已提交
52

D
DCloud_LXH 已提交
53
  > 模板项目存放于 Github,由于国内网络环境问题,可能下载失败。针对此问题可以尝试如下措施:
hbcui1984's avatar
hbcui1984 已提交
54

D
DCloud_LXH 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
  - 更换网络重试,比如使用 4g 网络
  - 在设备或路由器的网络设置中增加 DNS(如:8.8.8.8)
  - 在设备中增加固定的 hosts(如:140.82.113.4 github.com)

- **修改依赖为指定版本@cliversion**

  可以使用 [@dcloudio/uvm](https://www.npmjs.com/package/@dcloudio/uvm) 管理编译器的版本:

  - 更新到 `最新正式版`
    ```shell
    npx @dcloudio/uvm
    ```
  - 更新到 `最新 alpha 版`
    ```shell
    npx @dcloudio/uvm alpha
    ```
  - 更新到 `正式版指定版本`
    ```shell
    npx @dcloudio/uvm 3.2.12.20211029
    ```
  - 更新到 `alpha 版指定版本`
    ```shell
    npx @dcloudio/uvm 3.2.14.20211112-alpha
    ```

## 运行、发布 uni-app
hbcui1984's avatar
hbcui1984 已提交
81

D
DCloud_LXH 已提交
82 83 84 85 86
### App 平台

> app 平台生成打包资源(支持 `npm run build:app-plus`,可用于持续集成。不支持直接运行到真机。运行调试仍需在 HBuilderX 中操作)

**编译命令**
hbcui1984's avatar
hbcui1984 已提交
87 88

```shell
D
DCloud_LXH 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
# npm
npm run build:app-plus
npm run dev:app-plus
# vue3项目
npm run build:app
npm run dev:app

# yarn
yarn build:app-plus
yarn dev:app-plus
# vue3项目
yarn build:app
yarn dev:app

# 监听文件变化且启用压缩
yarn build:app-plus --watch
# vue3项目
yarn build:app -w
hbcui1984's avatar
hbcui1984 已提交
107 108
```

D
DCloud_LXH 已提交
109
### H5
hbcui1984's avatar
hbcui1984 已提交
110

D
DCloud_LXH 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
**编译命令**

```shell
# npm
npm run build:h5
npm run dev:h5

# yarn
yarn build:h5
yarn dev:h5

# 监听文件变化且启用压缩
yarn build:h5 --watch
# vue3项目
yarn build:h5 -w
```

### 微信小程序

**编译命令**

```shell
# npm
npm run build:mp-weixin
npm run dev:mp-weixin

# yarn
yarn build:mp-weixin
yarn dev:mp-weixin

# 监听文件变化且启用压缩
yarn build:mp-weixin -watch
# vue3项目
yarn build:mp-weixin -w
```

### 支付宝小程序

**编译命令**

```shell
# npm
npm run build:mp-alipay
npm run dev:mp-alipay

# yarn
yarn build:mp-alipay
yarn dev:mp-alipay

# 监听文件变化且启用压缩
yarn build:mp-alipay -watch
# vue3项目
yarn build:mp-alipay -w
```

### 百度小程序

**编译命令**

```shell
# npm
npm run build:mp-baidu
npm run dev:mp-baidu

# yarn
yarn build:mp-baidu
yarn dev:mp-baidu

# 监听文件变化且启用压缩
yarn build:mp-baidu -watch
# vue3项目
yarn build:mp-baidu -w
```

### 字节跳动小程序

**编译命令**

```shell
# npm
npm run build:mp-toutiao
npm run dev:mp-toutiao

# yarn
yarn build:mp-toutiao
yarn dev:mp-toutiao

# 监听文件变化且启用压缩
yarn build:mp-toutiao -watch
# vue3项目
yarn build:mp-toutiao -w
```

### 飞书小程序

**编译命令**

```shell
# npm
npm run build:mp-lark
npm run dev:mp-lark

# yarn
yarn build:mp-lark
yarn dev:mp-lark

# 监听文件变化且启用压缩
yarn build:mp-lark -watch
# vue3项目
yarn build:mp-lark -w
```

### QQ 小程序

**编译命令**

```shell
# npm
npm run build:mp-qq
npm run dev:mp-qq

# yarn
yarn build:mp-qq
yarn dev:mp-qq

# 监听文件变化且启用压缩
yarn build:mp-qq -watch
# vue3项目
yarn build:mp-qq -w
```

### 快手小程序

**编译命令**

```shell
# npm
npm run build:mp-kuaishou
npm run dev:mp-kuaishou

# yarn
yarn build:mp-kuaishou
yarn dev:mp-kuaishou

# 监听文件变化且启用压缩
yarn build:mp-kuaishou -watch
# vue3项目
yarn build:mp-kuaishou -w
```
hbcui1984's avatar
hbcui1984 已提交
260

D
DCloud_LXH 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
### 快应用(webview)

**编译命令**

```shell
# npm
npm run build:quickapp-webview
npm run dev:quickapp-webview

# yarn
yarn build:quickapp-webview
yarn dev:quickapp-webview

# 监听文件变化且启用压缩
yarn build:quickapp-webview -watch
# vue3项目
yarn build:quickapp-webview -w
```

### 快应用联盟

**编译命令**

```shell
# npm
npm run build:quickapp-webview-union
npm run dev:quickapp-webview-union

# yarn
yarn build:quickapp-webview-union
yarn dev:quickapp-webview-union

# 监听文件变化且启用压缩
yarn build:quickapp-webview-union -watch
# vue3项目
yarn build:quickapp-webview-union -w
```

### 快应用华为

**编译命令**

```shell
# npm
npm run build:quickapp-webview-huawei
npm run dev:quickapp-webview-huawei

# yarn
yarn build:quickapp-webview-huawei
yarn dev:quickapp-webview-huawei

# 监听文件变化且启用压缩
yarn build:quickapp-webview-huawei -watch
# vue3项目
yarn build:quickapp-webview-huawei -w
```

### 360 小程序

**编译命令**

```shell
# npm
npm run build:mp-360
npm run dev:mp-360

# yarn
yarn build:mp-360
yarn dev:mp-360

# 监听文件变化且启用压缩
yarn cross-env NODE_ENV=production UNI_PLATFORM=mp-360 vue-cli-service uni-build --watch
```

可以自定义更多条件编译平台,比如钉钉小程序,参考[package.json 文档](https://uniapp.dcloud.io/collocation/package)

## HBuilderX cli
hbcui1984's avatar
hbcui1984 已提交
338

D
DCloud_LXH 已提交
339
开发者可以通过 cli 命令行指示 HBuilderX 进行启动、打包、登录等操作,详情参考:[https://hx.dcloud.net.cn/cli/README](https://hx.dcloud.net.cn/cli/README)