# react-native-webpack-server **Repository Path**: mirrors_gaearon/react-native-webpack-server ## Basic Information - **Project Name**: react-native-webpack-server - **Description**: Build React Native apps with Webpack - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # React Native and Webpack React Native Webpack Server is a development server that leverages the [Webpack Dev Server](https://github.com/webpack/webpack-dev-server) and the [React Packager](https://github.com/facebook/react-native/tree/master/packager) to enable building React Native JavaScript bundles with webpack. This allows you to use the existing webpack ecosystem when targeting React Native. [![react-native-webpack channel on slack](https://img.shields.io/badge/slack-react--native--webpack%40reactiflux-61DAFB.svg?style=flat-square)](http://www.reactiflux.com) ## Installing ```shell npm install --save-dev react-native-webpack-server ``` ## Using By default React Native will look for an index.ios.js at the root of the project. Delete this file and add an entry in your webpack config: ```js entry: { 'index.ios': ['./src/main.js'] } ``` Start the React Native Webpack Server using the included script. You might want to put this in your `package.json`. ```js "scripts": { "bundle": "react-native-webpack-server bundle", "start": "react-native-webpack-server start" } ``` This will start the server on port 8080. The last step is to change the URL of your application bundle in `AppDelegate.m`, changing 8081 to 8080: ```objc jsCodeLocation = [NSURL URLWithString:@"http://localhost:8080/index.ios.bundle"]; ``` To run the development server: ```shell npm start ``` ### Bundling for distribution Similar to the [standard React Native packager](https://facebook.github.io/react-native/docs/running-on-device-ios.html#using-offline-bundle), you can generate an offline JS bundle to use your app without a development server: ```shell react-native-webpack-server bundle # OR, using the above package.json script: npm run bundle ``` ## Source Maps Current solutions for building React Native bundles with Webpack lose source maps. This is because the Webpack bundle is first built and then passed off to the React Packager which [constructs the source map by hand](https://github.com/facebook/react-native/blob/master/packager/react-packager/src/Packager/Package.js#L149). This is done for speed, but it also means you can only use transforms that map lines 1 to 1. React Native Webpack Server enables source maps by generating the react-native and application bundles separately and then combining their source maps. ## Hot Reload Since this is built on Webpack you can now leverage the growing ecosystem of addons such as React hot module replacement via [react-transform-hmr](https://github.com/gaearon/react-transform-hmr). To enable hot reload, make sure you first install [babel-plugin-react-transform](https://github.com/gaearon/babel-plugin-react-transform) and [react-transform-hmr](https://github.com/gaearon/react-transform-hmr), then start the server with `--hot`. You'll also need to configure Webpack. See the [Babel+ES6 config](https://github.com/mjohnston/react-native-webpack-server/blob/master/Examples/BabelES6/webpack.config.js) for an example. **NOTE:** hot reload currently only works with the web socket executor (hit CMD+D in the simulator) or the WebView executor (CMD+CTRL+Z -> Enable Safari Debugging). If you regurlarly use this feature, you might want to default to the web socket exeuctor in development: RCTBridge.m: ```objc - (void)setUp { Class executorClass = _executorClass ?: _globalExecutorClass ?: [RCTContextExecutor class]; #if DEBUG executorClass = NSClassFromString(@"RCTWebSocketExecutor"); #endif ... } ``` Replace `RCTWebSocketExecutor` with `RCTWebViewExecutor` if you wish to use the Safari WebKit inspector instead of the Chrome dev tools. ## Packaging for release When you are ready to ship your app, you will want to generate a minified bundle and package it in the binary. You can build a minified bundle using the `dev` and `minify` URL parameters. Setting these to `false` or `0` will tell the React Native packager to minify and remove debug code. In your webpack config, you will likely want to enable the `UglifyJsPlugin`. The sample apps are configured to enable minification when `process.env.NODE_ENV` is set to `production`. See the [BabelES6 webpack config](https://github.com/mjohnston/react-native-webpack-server/blob/master/Examples/BabelES6/webpack.config.js#L41) for an example. To generate and copy the minified bundle into the iOS project: ```shell curl 'http://localhost:8080/index.ios.bundle?dev=false&minify=true' -o iOS/main.jsbundle ``` You will need to uncomment [this line](https://github.com/mjohnston/react-native-webpack-server/blob/master/Examples/BabelES6/iOS/AppDelegate.m#L37) in `AppDelegate.m` in order to load the local bundle. ## FAQ **I can't import 3rd party modules in my project.** Most react-native 3rd party modules are published to npm in ES6+ since the react-native packager handles transpiling. You may need to whitelist these modules in your webpack config, as the default configuration in the example excludes all of node_modules. See [issue #34](https://github.com/mjohnston/react-native-webpack-server/issues/34). **I get the red box of death when using hot reload even after fixing the exception.** Your code is still executing. Dismiss the red box using the `Esc` key. **Why is hot reload using a no-op setInterval() in my app?** It's a terrible hack to jump back onto the React Native runloop when a module is changed. If you have a better idea, please open a PR :) **Source map generation is really slow on io.js.** On a late-2012 Macbook Pro, it takes about 1.5 seconds to generate the source map for react-native on io.js. On stable node (0.12.x) it takes around 200ms. I originally thought this was an issue with [source-map](https://github.com/mozilla/source-map) but in an isolated test with the entirety of react-native I found io.js and node.js (stable) to be about the same. If you have any ideas, please let me know. In the meantime, it's best to use the latest stable version of node.js.