ReactNative开发环境配置与简单使用

核心理念:既拥有Native的用户体验,又保留React的开发效率.

目前,React Native基本完成了对多端的支持,实现了真正意义上的面向配置开发:开发者可以灵活的使用HTML和CSS布局,使用React语法构建组件,实现:H5,Android,iOS多端代码的复用.

React Native的优势

  • 跨平台开发: 运用React Native,我们可以使用同一份业务逻辑核心代码来创建原生应用运行在Web端,Android端和iOS端;

  • 追求极致的用户体验:实时热部署

  • Learn once, write anywhere 只需要学习React Native,我们就能够编写针对不同平台的应用,并且使用React Native框架开发相较于原生代码开发应用,更简单更高效。

React Native开发注意事项

  • 官方文档

目前React Native在iOS上仅支持ios7以上,Android仅支持Android4.1以上版本;

github地址:https://github.com/facebook/react-native

官方文档:http://facebook.github.io/react-native/docs/getting-started.html

环境需求

1.1安装Homebrew


ruby -e"$(curl -fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)"

命令行执行brew -v进行检查brew是否已经安装成功

1.2安装npm 和 Node.js


brew install node

此方式需要将Xcode更新到8.0

1.3安装WatchMan

watchman是Facebook用于监视JavaScript文件改动的开源项目,该插件用于监控bug变化和文件变化,并且可以触发指定的操作


brew install watchman

1.4安装flow

flow是Facebook开源的一个JavaScript静态类型检查器,建议安装它,以方便找出JavaScript程序中可能存在的类型错误


brew install flow

==注意事项==

  • 在Mac终端上出现npm command not found

执行


curl -L http://npmjs.org/install.sh | sudo sh

  • 配置全局环境变量

打开Mac终端,配置全局环境变量


vim .bash_profile

打开之后添加一行以下代码,(Mac的node,npm可执行文件都在/usr/local/bin/目录下)


PATH=$PATH:/usr/local/bin/


:wq  //保存并退出

#执行下面一句代码

$source .bash_profile

  • bash: react-native: command not found

npm install -g yarn react-native-cli //安装多个包

npm install -g react-native-cli

  • nvm安装路径

/Users/MengYu/.nvm/versions/node/v8.1.0/lib/node_modules

React Native的安装

安装react-native-cli

react-native-cli是React Native的命令行工具,安装react-native-cli后我们就能够通过react-native相关命令管理ReactNative工程。


npm install -g react-native-cli

不报错即为安装成功

创建第一个RN工程


react-native init 项目名称(RN)

是否成功标志


Installing Jest...

+ metro-react-native-babel-preset@0.51.1

+ react-test-renderer@16.6.3

+ babel-core@7.0.0-bridge.0

+ babel-jest@24.1.0

+ jest@24.1.0

added 449 packages from 255 contributors and updated 2 packages in 63.055s

To run your app on iOS:

  cd /Users/MengYu/Desktop/RN

  # react-native run-ios

  - or -

  Open ios/RN.xcodeproj in Xcode

  Hit the Run button

To run your app on Android:

  cd /Users/MengYu/Desktop/RN

  Have an Android emulator running (quickest way to get started), or a device connected

  # react-native run-android

** BUILD SUCCEEDED **

The following commands produced analyzer issues:

Analyze /Users/MengYu/Desktop/RN/node_modules/react-native/React/Base/RCTModuleMethod.mm normal x86_64

Analyze /Users/MengYu/Desktop/RN/node_modules/react-native/Libraries/Image/RCTImageCache.m normal x86_64

Analyze /Users/MengYu/Desktop/RN/node_modules/react-native/Libraries/Network/RCTNetInfo.m normal x86_64

(3 commands with analyzer issues)

Installing build/Build/Products/Debug-iphonesimulator/RN.app

Launching org.reactjs.native.example.RN

org.reactjs.native.example.RN: 18533

运行iOS工程


cd /Users/MengYu/Desktop/RN

  #执行 react-native run-ios

运行成功标志

image

第二种方式创建RN项目

1.创建并安装依赖

npm install -g expo-cli


expo init AwesomeProject

cd AwesomeProject

npm start #you can also use: expo start

2.Server后台监听

This will start a development server for you.

3.运行在iOS平台
  • 运行在模拟器

npm run ios

或

expo start --ios

  • 运行在自己手机上

在AppStore 下载Expo client App

打开相机扫描二维码,在Expo中打开

  • 刷新: Command + R

  • 展示菜单 : Command + D

4.开发

复制下列代码到App.js


import React, { Component } from 'react';

import { AppRegistry, Image } from 'react-native';

export default class Bananas extends Component {

    render() {

        let pic = {

            uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'

        };

        return (

            <Image source={pic} style={{width: 300, height: 110, marginTop: 20, marginLeft: 20, marginRight: 20}}/>

        );

    }

}

// skip this line if using Create React Native App

AppRegistry.registerComponent('AwesomeProject', () => Bananas);

Command + S 保存,在手机上就能看到你修改的内容

注意

如果服务断开,请重新执行 $expo start ,之后重新扫码查看

image
跳转到RN界面

RNViewController *VC = [[RNViewController alloc] init];

[self.navigationController pushViewController:VC animated:YES];


RN简单配置

#import <React/RCTRootView.h>

@interface RNViewController ()

@end

@implementation RNViewController

- (void)viewDidLoad {

    [super viewDidLoad];

self.view.backgroundColor = [UIColor whiteColor];

    self.title = @"RN Hybrid";

    NSURL * jsCodeLocation;

    NSString * strUrl = @"http://localhost:8081/index.ios.bundle?platform=ios&dev=true";

    jsCodeLocation = [NSURL URLWithString:strUrl];

    RCTRootView * rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation moduleName:@"iOSHybridRNDemo"initialProperties:nil

                                                      launchOptions:nil];

    self.view = rootView;

}

RN项目index.ios.js配置


import React, {Component} from 'react'

import {

  Platform,

  StyleSheet,

  Text,

  View,

  AppRegistry

} from 'react-native';

const instructions = Platform.select({

  ios: 'Press Cmd+R to reload,\n' +

    'Cmd+D or shake for dev menu',

  android: 'Double tap R on your keyboard to reload,\n' +

    'Shake or press menu button for dev menu',

});

class App extends Component {

  render() {

    return (

      <View style={styles.container}>

        <Text style={styles.welcome}>

          Welcome to React Native!

        </Text>

        <Text style={styles.instructions}>

          To get started, edit App.js

        </Text>

        <Text style={styles.instructions}>

          {instructions}

        </Text>

      </View>

    );

  }

}

const styles = StyleSheet.create({

  container: {

    flex: 1,

    justifyContent: 'center',

    alignItems: 'center',

    backgroundColor: '#F5FCFF',

  },

  welcome: {

    fontSize: 20,

    textAlign: 'center',

    margin: 10,

  },

  instructions: {

    textAlign: 'center',

    color: '#333333',

    marginBottom: 5,

  },

});

AppRegistry.registerComponent('iOSHybridRNDemo', () => App)

RN 项目运行步骤

  • cd 到 RN目录下执行 npm install
  • cd 到iOS目录下执行 pod install
  • 监听 cd 到 RN目录下执行 npm start
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容