React Native 編譯命令

風的王子發表於2016-07-20

編譯命令

  • 執行 server

    react-native start 或者 npm start

  • 執行 客戶端

    react-native run-android

  • 安裝模組,新增依賴

    npm install react-native-swiper –save

  • 檢視模組

    npm view react-native-swiper

  • 刪除模組

    npm rm react-native-swiper

  • 建立專案

    react-native init 專案名稱

  • 檢視版本號

    react-native –version

  • 查詢 react-native 依賴npm包

    npm info react-native

  • 查詢 react-native 專案包

    進入專案根目錄, cat package.json

  • 升級 專案內的庫

    進入專案根目錄,react-native upgrade

  • 升級 React Native

    sudo npm update -g react-native-cli (如果許可權沒有限制沒必要用sudo)

相關文章