Skip to content

Commit 13c36b1

Browse files
committed
0.5.4
2 parents 5192896 + 8a0cc8d commit 13c36b1

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ Build OS X desktop apps using React Native.
55
[![Build Status](https://travis-ci.org/ptmt/react-native-desktop.svg)](https://travis-ci.org/ptmt/react-native-desktop)
66
[![npm version](https://badge.fury.io/js/react-native-desktop.svg)](https://badge.fury.io/js/react-native-desktop)
77
[![discord #react-native-desktop](https://img.shields.io/badge/discord-%23react--native--desktop-blue.svg)](https://discordapp.com/channels/102860784329052160/111514927801307136)
8-
_[Alpha quality]_
98

109
```jsx
1110
<View>
@@ -14,24 +13,28 @@ _[Alpha quality]_
1413
```
1514
<img width="407" alt="screenshot 2016-03-03 17 18 33" src="https://cloud.githubusercontent.com/assets/1004115/13496949/fe98e5e2-e163-11e5-9ded-0b4449950c8f.png">
1615

17-
1816
## Getting started
1917

18+
**Disclaimer**. It's recommended to have previous experience of developing apps with React Native.
19+
2020
``` bash
2121
npm install react-native-desktop-cli -g
2222
react-native-desktop init MyProject
23+
cd MyProject
2324
open osx/MyProject.xcodeproj
2425
```
2526
Since it's simply just a fork, you can follow [the same steps](http://facebook.github.io/react-native/docs/getting-started.html#content) from the original React Native.
2627
Feel free to ask anything on `#react-native-desktop` channel if you run into problems (and you probably will).
2728

28-
****
29+
## Screenshots and examples
2930

3031
![uiexplorer](https://cloud.githubusercontent.com/assets/1004115/10608147/311445b0-7757-11e5-9ef7-2e76107e4bb7.png)
3132

3233
<img width="986" alt="screenshot 2015-10-24 16 40 36" src="https://cloud.githubusercontent.com/assets/1004115/10710169/c1bc7d06-7a65-11e5-8bab-4f89ecae26c3.png">
3334

3435
<img width="986" alt="screenshot 2015-10-27 17 08 38" src="https://cloud.githubusercontent.com/assets/1004115/10756317/0ee807ec-7cc5-11e5-8fe4-6aaa8a9f7858.png">
3536

37+
<img width="1001" alt="screenshot 2016-03-30 12 31 35" src="https://cloud.githubusercontent.com/assets/1004115/14138006/662dce6a-f673-11e5-9b29-6a3662761208.png">
38+
3639

3740
[![Youtube play](https://cloud.githubusercontent.com/assets/1004115/11685246/75db9d6a-9e99-11e5-8378-1d5cea6053c0.png)](https://www.youtube.com/watch?v=m1-LNKIuqtI)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-desktop",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"description": "A framework for building native desktop apps using React",
55
"license": "BSD-3-Clause",
66
"repository": {

react-native-desktop-cli/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function createProject(name, verbose) {
175175
start: 'node node_modules/react-native-desktop/local-cli/cli.js start'
176176
}
177177
};
178-
fs.writeFileSync(path.join(root, 'package.json'), JSON.stringify(packageJson));
178+
fs.writeFileSync(path.join(root, 'package.json'), JSON.stringify(packageJson, null, 2));
179179
process.chdir(root);
180180

181181
console.log('Installing react-native-desktop package from npm...');

0 commit comments

Comments
 (0)