diff --git a/releases/0.49/docs/integration-with-existing-apps.html b/releases/0.49/docs/integration-with-existing-apps.html index 84bf989325a..3d0542dc570 100644 --- a/releases/0.49/docs/integration-with-existing-apps.html +++ b/releases/0.49/docs/integration-with-existing-apps.html @@ -97,7 +97,7 @@ "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start" } -}
Next, you will install the react and react-native packages. Open a terminal or command prompt, then navigate to the root directory for your project and type the following commands:
This will create a new /node_modules folder in your project's root directory. This folder stores all the JavaScript dependencies required to build your project.
Next, you will install the react and react-native packages. Open a terminal or command prompt, then navigate to the root directory for your project and type the following commands:
Make sure you use the same React version as specified in the React Native
package.jsonfile. This will only be necessary as long as React Native depends on a pre-release version of React.
This will create a new /node_modules folder in your project's root directory. This folder stores all the JavaScript dependencies required to build your project.
CocoaPods is a package management tool for iOS and macOS development. We use it to add the actual React Native framework code locally into your current project.
We recommend installing CocoaPods using Homebrew.
It is technically possible not to use CocoaPods, but that would require manual library and linker additions that would overly complicate this process.