weex-toolkit工具的相關命令介紹

Shania發表於2018-04-25
  1. create/init:建立專案
    # 從官方模板中建立專案
    $ weex create project-name
    $ weex init project-name
    複製程式碼
  2. platform:新增或移除ios/android專案模板
    //新增或移除ios模板
    $ weex platform remove ios
    $ weex platform add ios
    
    //新增或移除Android模板
    $ weex platform remove Android
    $ weex platform add Android複製程式碼
  3. run:執行android/ios/web專案
    $ weex run ios
    $ weex run android
    $ weex run web複製程式碼
  4. debug:除錯工具。具體用法
  5. compile:編譯單個weex檔案或者整個資料夾中的weex檔案。具體用法
  6. build:打包

    $ weex build ios
    $ weex build android
    $ weex build web複製程式碼


參考連結:

  1. https://www.npmjs.com/package/weex-toolkit
  2. http://weex.apache.org/cn/tools/toolkit.html


相關文章