Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NervJS/taro-todo
多端解决方案示例
https://github.com/NervJS/taro-todo
Last synced: 3 months ago
JSON representation
多端解决方案示例
- Host: GitHub
- URL: https://github.com/NervJS/taro-todo
- Owner: NervJS
- Created: 2018-03-27T09:24:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-04T06:18:43.000Z (over 5 years ago)
- Last Synced: 2024-07-27T15:39:37.990Z (3 months ago)
- Language: JavaScript
- Size: 679 KB
- Stars: 56
- Watchers: 10
- Forks: 11
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-taro - taro-todo
README
安装 Taro 开发工具 `@tarojs/cli`
使用 npm或者yarn 全局安装,或者直接使用[npx](https://medium.com/@maybekatz/introducing-npx-an-npm-package-runner-55f7d4bd282b)
```bash
$ npm install -g @tarojs/cli
$ yarn global add @tarojs/cli
```安装依赖包:
```
$ yarn install
```进入项目目录开始开发,可以选择小程序预览模式,或者H5预览模式,若使用微信小程序预览模式,则需要自行下载并打开[微信开发者工具](https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html),选择预览项目根目录下 `dist` 目录。
微信小程序编译预览模式
```bash
# npm script
$ npm run serve:weapp
# 仅限全局安装
$ taro build --type weapp --watch
# npx用户也可以使用
$ npx taro build --type weapp --watch
```H5编译预览模式
```bash
# npm script
$ npm run serve:h5
# 仅限全局安装
$ taro build --type h5 --watch
# npx用户也可以使用
$ npx taro build --type h5 --watch
```项目打包
打包小程序代码
```bash
# npm script
$ npm run build:weapp
# 仅限全局安装
$ taro build --type weapp
# npx用户也可以使用
$ npx taro build --type weapp
```打包H5代码
```bash
# npm script
$ npm run build:h5
# 仅限全局安装
$ taro build --type h5
# npx用户也可以使用
$ npx taro build --type h5
```