https://nodejs.org/en/ 下載node.js 安裝node.js(Mac環境)
npm view connect versions 列出npm的所有版本
npm -v 查詢node.js安裝版本
npm -g install [email protected] 安裝指定版本的npm
npm install -g react-native-cli 安裝React native命令行工具
react-native init MyApp 初始化MyApp項目並下載相關庫文件
//運行IOS
To run your app on IOS:
cd /Users/xieyuhai/Downloads/AndroidReact/MyApp
react-native run-IOS
- or -
Open ios/MyApp.xcodeproj in Xcode
Hit the Run button
// 運行Android
To run your app on Android:
cd /Users/xieyuhai/Downloads/androidReact/MyApp
Have an Android emulator running (quickest way to get started), or a device connected
react-native run-android
在運行ios的時候出現下面的錯誤
Print: Entry, ":CFBundleIdentifier", Does Not Exist
1、首先確定ios項目目錄下Info.plist裡已經配置好CFBundleIdentifier
2、升級xcode版本到最新(我的目前是Version 7.3.1 (7D1014))升級到Version 8.2.1 (8C1002) 後編譯成功
【第一個React native app】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!