Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NervJS/taro-components-sample
taro components sample
https://github.com/NervJS/taro-components-sample
Last synced: 3 months ago
JSON representation
taro components sample
- Host: GitHub
- URL: https://github.com/NervJS/taro-components-sample
- Owner: NervJS
- Created: 2018-06-17T15:17:15.000Z (over 6 years ago)
- Default Branch: next
- Last Pushed: 2023-03-04T03:28:10.000Z (over 1 year ago)
- Last Synced: 2024-07-11T18:14:21.301Z (4 months ago)
- Language: JavaScript
- Size: 3.15 MB
- Stars: 53
- Watchers: 13
- Forks: 13
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-taro - taro-components-sample
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 dev:weapp
# 仅限全局安装
$ taro build --type weapp --watch
# npx用户也可以使用
$ npx taro build --type weapp --watch
```H5编译预览模式
```bash
# npm script
$ npm run dev: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
```