19 / 09 / 29
$ yarn global add @tarojs/cli
$ taro update self
$ taro init 项目名称
CLI会让我们做四个选择,现在我们只需要用最简单的方式创建项目,所以我们作出以下选择:
问题 | 选择 |
---|---|
请输入项目介绍! | 根据项目需求自己写 |
是否需要使用 TypeScript ? (Y/n) | n |
请选择 CSS 预处理器(Sass/Less/Stylus/无) | 无 |
请选择模板(默认模板/mobx/redux/wxcloud/wxplugin) | 默认模板 |
创建成功后等终端出现一下字样即为创建成功。
创建项目 todoList 成功! 请进入项目目录 todoList 开始工作吧!😝
# taro $ taro update self # npm npm i -g @tarojs/cli@latest # yarn yarn global add @tarojs/cli@latest
taro update project
# npm script $ npm run dev:weapp $ npm run build:weapp # 仅限全局安装 $ taro build --type weapp --watch $ taro build --type weapp
# npm script $ npm run dev:swan $ npm run build:swan # 仅限全局安装 $ taro build --type swan --watch $ taro build --type swan
# npm script $ npm run dev:alipay $ npm run build:alipay # 仅限全局安装 $ taro build --type alipay --watch $ taro build --type alipay
# npm script $ npm run dev:h5 # 仅限全局安装 $ taro build --type h5 --watch
# npm script $ npm run dev:rn # 仅限全局安装 $ taro build --type rn --watch