Skip to content

Commit 80e5c12

Browse files
authored
add npx when calling react-native cli as currently recommended
1 parent dbce9c7 commit 80e5c12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Bugfender bindings for React Native depend on the native iOS and Android Bug
88

99
You can create a new project using
1010

11-
`$ react-native init AwesomeProject`
11+
`$ npx react-native init AwesomeProject`
1212

1313
or if you already started your project using the tool `create-react-native-app` you will need to `eject` your project in order to add native modules.
1414

@@ -33,7 +33,7 @@ For manual installation, proceed with the steps 2 and 3A.
3333
**2.** Link to your project
3434
```
3535
// Add the classes of the plugin to your android and iOS projects
36-
$ react-native link @bugfender/rn-bugfender`
36+
$ npx react-native link @bugfender/rn-bugfender`
3737
```
3838

3939
### Android
@@ -61,7 +61,7 @@ $ pod init
6161
2. Link your project:
6262
```
6363
// Add the classes of the plugin to your android and iOS projects
64-
$ react-native link @bugfender/rn-bugfender`
64+
$ npx react-native link @bugfender/rn-bugfender`
6565
```
6666

6767
Make sure you're targeting at least iOS platform version 10 (specify `platform :ios, '10.0'`).

0 commit comments

Comments
 (0)