IDE开发工具
开发工具安装与配置
Atom + Nuclide
- 先下载Atom https://atom.io/ atom
- 然后利用 Atom 的包管理器 apm 安装安装nuclide插件 $ apm install nuclide
或直接源码安装
git clone https://github.com/facebook/nuclide.git cd nuclide
或在atom设置中安装nuclide
Preferences -> Install -> nuclide 
Atom自动代码揭示
Atom > Open Your Keymap 文件添加
‘atom-text-editor’: ‘cmd-alt-l’: ‘editor:auto-indent’

WebStorm
Web前端开发神器 -JetBrains
下载WebStorm:
http://www.jetbrains.com/webstorm/
下载ReactNative插件:
git clone https://github.com/virtoolswebplayer/ReactNative-LiveTemplate
打开web storm导入插件Jar包
file -> import settings -> ReactNative.jar
WebStorm不识别React Native语法解决方案 只需要开启JSX语法支持即可,具体解决方案如下: Preferences -> Languages and Frameworks -> JavaScript -> language version下拉框里选JSX
