update list of supported react wrappers in README

This commit is contained in:
Artur Girenko 2016-05-03 21:31:39 +02:00
parent c9471bf636
commit e5a3a50800
1 changed files with 9 additions and 4 deletions

View File

@ -7,8 +7,9 @@ Artur Girenko, MIT License
This project is a fork of [dmotz/natal](https://github.com/dmotz/natal) by Dan Motzenbecker with
the goal of generating skeleton of native app for iOS and Android based on
[Reagent](https://github.com/reagent-project/reagent) and [re-frame](https://github.com/Day8/re-frame)
or [Om.Next](https://github.com/omcljs/om/wiki/Quick-Start-(om.next)).
[Reagent](https://github.com/reagent-project/reagent) + [re-frame](https://github.com/Day8/re-frame),
[Om.Next](https://github.com/omcljs/om/wiki/Quick-Start-(om.next)) or
[Rum](https://github.com/tonsky/rum).
The support of Figwheel is based on brilliant solution developed by Will Decker [decker405/figwheel-react-native](https://github.com/decker405/figwheel-react-native)
which works in both platforms.
@ -35,6 +36,10 @@ Contributions are welcome.
- You can reload app any time, no problem.
- Custom react-native components are supported (with re-natal use-component <name>)
- Source maps are available when you "Debug in Chrome" (with re-natal enable-source-maps)
- Supported React wrappers:
[Reagent](https://github.com/reagent-project/reagent)
[Om.Next](https://github.com/omcljs/om/wiki/Quick-Start-(om.next))
[Rum](https://github.com/tonsky/rum)
- Optimizations :simple is used to compile "production" index.ios.js and index.android.js
- [Unified way of using static images of rn 0.14+](https://facebook.github.io/react-native/docs/images.html) works
- Works on Linux and Windows (Android only)
@ -55,10 +60,10 @@ To bootstrap a new app, run `re-natal init` with your app's name as an argument:
```
$ re-natal init FutureApp
```
Or, specify -i option to generate Om.Next or Reagent v0.6 project:
Or, specify -i option to generate Om.Next, Reagent v0.6 or Rum project:
```
$ re-natal init FutureApp -i [om-next | reagent6]
$ re-natal init FutureApp -i [om-next | reagent6 | rum]
```
If your app's name is more than a single word, be sure to type it in CamelCase.