If you're already familiar with JavaScript, React Native and Webpack, then you'll be able to get moving quickly! Otherwise, it's highly recommended to get yourself familiar with these topic and then come back here:
react-native
>= 0.62.0If you're using older versions of React Native, you can still try using Re.Pack, but your mileage may vary as they are not officially supported.
Officially, Re.Pack doesn't support Expo. It might be possible to use Re.Pack in Expo projects, but it would require more work and setup. We welcome anyone who would like to contribute and bring Expo support to Re.Pack.
Additionally, in order to use Code Splitting functionality, Re.Pack provides a native module which should be compiled into your application. This means that with Expo you won't be able to use it.
On paper, Re.Pack should work with any version of Webpack 5, but we recommend to consult with the compatibility table below.
The table represents versions of webpack
for which Re.Pack is confirmed to work correctly.
If you don't see your version, give it a go. If it doesn't work, please open an issue.
webpack |
@callstack/repack |
@callstack/nativepack * |
---|---|---|
5.22.0 |
1.0.x , 1.1.x , 1.2.x |
|
>=5.29.0 |
2.0.0-beta.x |
1.2.x , 1.3.x , 1.4.x |
* @callstack/repack
is rebranded @callstack/nativepack
- they are both the same project.
Install required dependencies in your project:
This will install latest versions of Webpack and Re.Pack. If you already have Webpack or Re.Pack installed, you might want to check the compatibility table to ensure all dependencies are ok.
Once the dependencies are installed, you need to tell React Native CLI to add Re.Pack's commands.
Add the following content to react-native.config.js
(or create it if it doesn't exist):
This will allow you to use react-native webpack-start
and react-native webpack-bundle
commands, but before that you need to create a Webpack configuration.
Create file webpack.config.js
in the root directory of your project and paste the content from our Webpack config template.
When building release version of your application XCode project and Gradle will still use Metro to bundle the application, so you need to adjust build settings so that XCode and Gradle are using Re.Pack.
Open your application's XCode project/workspace and:
export BUNDLE_COMMAND=webpack-bundle
to the phaseAfter the change, the content of this phase should look similar to:
Open your application's Gradle project, usually located at android/app/build.gradle
and add bundleCommand: "webpack-bundle"
to project.ext.react
.
After the change, the content of project.ext.react
should look similar to:
After completing Installation you should be able to use Re.Pack's development server and bundle your application.
Keep in mind that, you might need to adjust Webpack config to your project in order to the application to work correctly. It's impossible for us to know what your project looks like and uses, so it's recommended to read through the Webpack config's code and comments and make sure you understand what's going on there.
When developing your application, you want to run Re.Pack's development server to compile your source code with Webpack.
The recommended way is to use React Native CLI and run:
You can pass the same CLI options to react-native webpack-start
as you would to react-native start
.
The 2nd option, is to use Webpack CLI:
Make sure you have webpack-cli
installed in your project. When running with Webpack CLI, you run a development server for a single platform - e.g. either ios
or android
.
If you want to develop for multiple platforms at once, please use react-native webpack-start
.
When building the release version of your application via XCode, Gradle CLI or Android Studio, as long as you followed Configure XCode and Configure Android, it should use Re.Pack to bundle your application.
If you want to create bundle (development or production), the recommended way is to use React Native CLI and run:
You can pass the same CLI options to react-native webpack-bundle
as you would to react-native bundle
.
The 2nd option, is to use Webpack CLI:
Make sure you have webpack-cli
installed in your project.
Using Webpack CLI is recommended only for advanced users, who have previous experience with Webpack.