From 1e863ad1921d6c45d89637abbf3b38b33ab3b241 Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Fri, 29 May 2015 21:00:51 +0200 Subject: [PATCH 1/2] add README for react-native cli --- react-native-cli/README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 react-native-cli/README.md diff --git a/react-native-cli/README.md b/react-native-cli/README.md new file mode 100644 index 000000000..d8734d1ea --- /dev/null +++ b/react-native-cli/README.md @@ -0,0 +1,8 @@ +Use react-native-cli to initialize a working starter React Native app using the latest react-native version in npm. This package should be installed globally. + +Usage: + +``` +% npm install -g react-native-cli +% react-native init myApplication +``` From d4da4e3fd98f019a7f2c94ec4bb00f75d5f58aed Mon Sep 17 00:00:00 2001 From: Joshua Sierles Date: Fri, 29 May 2015 22:51:04 +0200 Subject: [PATCH 2/2] capitalize sample app name to avoid issues with JSX --- react-native-cli/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-cli/README.md b/react-native-cli/README.md index d8734d1ea..67f13a0d8 100644 --- a/react-native-cli/README.md +++ b/react-native-cli/README.md @@ -4,5 +4,5 @@ Usage: ``` % npm install -g react-native-cli -% react-native init myApplication +% react-native init MyApplication ```