RN开发-windows环境搭建

    1、安装jdk,sdk,C++运行环境(cygwin,Windows SDK,mingw),node.js和git

    2、设置全局使用指定的镜像
        打开git-cmd.exe
            npm config set registry https://registry.npm.taobao.org
            npm config set disturl https://npm.taobao.org/dist
    
    3、安装React Native命令行
        github下载Facebook的React Native   
        cd react-native-master\react-native-cli
        npm install -g react-native-cli

    4、创建项目
        react-native init MyProject
    
    5、运行packager
        进入工程目录
        react-native start | npm start
        使用浏览器访问
        http://localhost:8081/index.android.bundle?platform=android
        在终端验证是否可以看到打包后的脚本   
    
    6、运行app
        react-native run-android
        react-native run-ios

posted @ 2016-10-18 09:50  农民子弟  阅读(1858)  评论(0编辑  收藏  举报