Skip to content

Commit 23b6e96

Browse files
committed
Update docs/getting-started.md
1 parent fc4d1b7 commit 23b6e96

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

docs/getting-started.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
Just these steps let you start RNDebugger out of box:
44

5-
* Make sure all debugger clients of React Native are closed, usually are `http://localhost:<port>/debugger-ui`
6-
* Make sure RNDebugger is open and wait state.
7-
* RNDebugger will try connect to debugger proxy, use port `8081` by default, you can new debugger window (macOS: `Command+T`, Linux/Windows: `Ctrl+T`) to specify the port if you want.
8-
* Enable `Debug JS Remotely` of [developer menu](https://facebook.github.io/react-native/docs/debugging.html#accessing-the-in-app-developer-menu) on your app
5+
- Make sure all debugger clients of React Native are closed, usually are `http://localhost:<port>/debugger-ui`
6+
- Make sure RNDebugger is open and wait state.
7+
- RNDebugger will try connect to debugger proxy, use port `8081` by default, you can new debugger window (macOS: `Command+T`, Linux/Windows: `Ctrl+T`) to specify the port if you want.
8+
- Enable `Debug JS Remotely` of [developer menu](https://facebook.github.io/react-native/docs/debugging.html#accessing-the-in-app-developer-menu) on your app
99

1010
## Launch by CLI or React Native packager (`macOS` only)
1111

@@ -31,14 +31,14 @@ Special case of Expo (CRNA):
3131
$ REACT_DEBUGGER="unset ELECTRON_RUN_AS_NODE && open -g 'rndebugger://set-debugger-loc?port=19001' ||" npm start
3232
```
3333

34-
__*NOTE*__ Currently the `REACT_DEBUGGER` env doesn't work with Haul bundler, please tracking [issue #141](https://github.com/jhen0409/react-native-debugger/issues/141).
34+
**_NOTE_** Currently the `REACT_DEBUGGER` env doesn't work with Haul bundler, please tracking [issue #141](https://github.com/jhen0409/react-native-debugger/issues/141).
3535

3636
### Use [`react-native-debugger-open`](../npm-package)
3737

3838
If you don‘t care to add a dependency, you can use the package, it can help to:
3939

40-
* Replace `open debugger-ui with Chrome` to `open React Native Debugger` in react-native packager, saving you from closing the debugger-ui page everytime it automatically opens :)
41-
* Detect react-native packager port then send to the app, if you launch packager with custom `--port` or use Expo, this will be very useful
40+
- Replace `open debugger-ui with Chrome` to `open React Native Debugger` in react-native packager, saving you from closing the debugger-ui page everytime it automatically opens :)
41+
- Detect react-native packager port then send to the app, if you launch packager with custom `--port` or use Expo, this will be very useful
4242

4343
### What about Linux / Windows support?
4444

@@ -54,23 +54,23 @@ Use the same API as [`redux-devtools-extension`](https://github.com/zalmoxisus/r
5454

5555
```js
5656
const store = createStore(
57-
reducer, /* preloadedState, */
58-
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
59-
);
57+
reducer /* preloadedState, */,
58+
window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__(),
59+
)
6060
```
6161

6262
See [`Redux DevTools Integration`](redux-devtools-integration.md) section for more information.
6363

6464
## Platform support
6565

66-
* [React Native](https://github.com/facebook/react-native) >= 0.21.0
67-
* [React Native for macOS](https://github.com/ptmt/react-native-desktop) (formerly react-native-desktop) >= 0.8.7
68-
* [React Native for Windows](https://github.com/Microsoft/react-native-windows)
66+
- [React Native](https://github.com/facebook/react-native) >= 0.43
67+
- [React Native for macOS](https://github.com/ptmt/react-native-macos) (formerly react-native-desktop) >= 0.14.0
68+
- [React Native for Windows](https://github.com/Microsoft/react-native-windows)
6969

7070
## Examples for use RNDebugger
7171

72-
* [`Redux counter`](../examples/counter-with-redux)
73-
* [`MobX counter`](../examples/counter-with-mobx) - with [`mobx-remotedev`](https://github.com/zalmoxisus/mobx-remotedev).
72+
- [`Redux counter`](../examples/counter-with-redux)
73+
- [`MobX counter`](../examples/counter-with-mobx) - with [`mobx-remotedev`](https://github.com/zalmoxisus/mobx-remotedev).
7474

7575
The examples was bootstrapped with [`create-react-native-app`](https://github.com/react-community/create-react-native-app).
7676

@@ -82,12 +82,12 @@ You can also click `React Native Debugger` (`RND` for Linux / Windows) -> `Check
8282

8383
## Other documentations
8484

85-
* [Debugger Integration](debugger-integration.md)
86-
* [React DevTools Integration](react-devtools-integration.md)
87-
* [Redux DevTools Integration](redux-devtools-integration.md)
88-
* [Shortcut references](shortcut-references.md)
89-
* [Network inspect of Chrome Developer Tools](network-inspect-of-chrome-devtools.md)
90-
* [Enable open in editor in console](enable-open-in-editor-in-console.md)
91-
* [Config file in home directory](config-file-in-home-directory.md)
92-
* [Troubleshooting](troubleshooting.md)
93-
* [Contributing](contributing.md)
85+
- [Debugger Integration](debugger-integration.md)
86+
- [React DevTools Integration](react-devtools-integration.md)
87+
- [Redux DevTools Integration](redux-devtools-integration.md)
88+
- [Shortcut references](shortcut-references.md)
89+
- [Network inspect of Chrome Developer Tools](network-inspect-of-chrome-devtools.md)
90+
- [Enable open in editor in console](enable-open-in-editor-in-console.md)
91+
- [Config file in home directory](config-file-in-home-directory.md)
92+
- [Troubleshooting](troubleshooting.md)
93+
- [Contributing](contributing.md)

0 commit comments

Comments
 (0)