react-native-hot-redux-starter β˜…135

Overview

React Native Hot Redux Starter (deprecated)

Hot reloading is now built into React Native, so use that instead of this.

This is a starter kit for building React Native apps using Redux and the react-native-webpack-server for hot code reloading.

Hot reloading is based on the BabelES6 example in @mjohnston's react-native-webpack-server.

Installation

git clone [email protected]:adampash/react-native-hot-redux-starter.git
cd react-native-hot-redux-starter
npm install

Development

npm run hot
open ./ios/react_native_starter.xcodeproj

Cmd+R inside Xcode to run the app in the iOS simulator. On first run, you'll likely receive an error because, in order for hot-loading to work, you need to be debugging in Chrome. Dismiss the error (press escape), then press Cmd+D and click on the Debug in Chrome button. When the Chrome debugger is open and connected, press Cmd+R in the iOS simulator to reload the app. You should now be hot-loading, and all changes you save in your source should update in the app.

What's in it?

I'm using the starter to familiarize myself with Flux using Redux and the best practices I know of.

Build for release

npm run bundle

Uncomment the line in AppDelegate.m that loads the local main.jsbundle. (Line 46.)

Todo

  • Update for Android.

Thanks

Many thanks to Dan Abramov for help debugging hot loading (along with all of his work that I'm using here).

You might also like...
React Native Boilerplate - Redux + Saga + Reselect + redux-persist + react-navigation + TypeScript

React Native Boilerplate with Typescript Overview This React Native template for building solid applications through SOC(separation of concerns) betwe

Simple ReactNative starter with an opinionated folder structure for mobile development.

Simple React Native Starter Simple ReactNative starter with an opinionated folder structure for mobile development. Getting Started Ensure you've foll

React Native + React-Redux + Native Base + Code Push

React-Native-Starter-Pack React Native + React-Redux + Native Base + Code Push ##Setting Up Project npm i -g rninit rninit init new-app-name --sourc

Demo app for React Native Elements (w/ React Native Web)
Demo app for React Native Elements (w/ React Native Web)

React Native Elements App Mobile App This is the Demo app for React Native Elements built with Expo. The purpose of this app is to demonstrate the usa

Rhinos-app is a react-native app which uses react-native-web to achieve cross-platform design.
Rhinos-app is a react-native app which uses react-native-web to achieve cross-platform design.

Rhinos-app Rhinos-app is a react-native app which uses react-native-web to achieve cross-platform design. Live Demo: web version 🌟 FEATURES: πŸ“± πŸ’» Ru

Infinite Red's cutting edge React Native project boilerplate, along with a CLI, component/model generators, and more!
Infinite Red's cutting edge React Native project boilerplate, along with a CLI, component/model generators, and more!

Ignite - the hottest React Native boilerplate Battle-tested React Native boilerplate The culmination of five years of constant React Native developmen

React Native Meteor Boilerplate

React Native Meteor Boilerplate This is a simple way to get started building an app with React Native and Meteor. It is opinionated to make it easy fo

A React Native template for building solid applications, using JavaScript or Typescript (you choose).
A React Native template for building solid applications, using JavaScript or Typescript (you choose).

TheCodingMachine React Native boilerplate This project is a React Native boilerplate that can be used to kickstart a mobile application. The boilerpla

Get your favorite boilerplate of React Native

ReactNativeSeed.com This repo is used to collect stars for ReactNativeSeed.com. About ReactNativeSeed.com provides you with a number of React Native B

Comments
  • Missing dependencies from react-native

    Missing dependencies from react-native

    Synopsis

    Many modules - consistently dependencies of react-native - are going unresolved despite React being installed locally.

    Environment

    OS: Mac OS X 10.11 Node: iojs-v2.4.0 NPM: 3.3.4

    Locally installed modules:

    ❯ npm ls --depth=0
    [email protected] /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ [email protected]
    β”œβ”€β”€ red[email protected]
    β”œβ”€β”€ [email protected]
    └── [email protected]
    

    Steps to reproduce

    1. Clone the repo
    2. Run npm i
    3. Run npm run hot

    Output

    ❯ npm run hot
    
    > [email protected] hot /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter
    > HOT=1 ./node_modules/.bin/react-native-webpack-server start --hot
    
    Server listening at http://localhost:8080
    Unable to resolve module LinkedStateMixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactComponentWithPureRenderMixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactUpdates from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module cloneWithProps from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactFragment from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module update from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactDefaultPerf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactTestUtils from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native/react-native.js
    Unable to resolve module ReactChildren from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactClass from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactComponent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactCurrentOwner from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactElement from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactElementValidator from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactInstanceHandles from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactUpdates from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module deprecated from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module onlyChild from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module ReactReconciler from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNative.js
    Unable to resolve module EventPluginHub from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module EventPluginUtils from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactComponentEnvironment from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactDefaultBatchingStrategy from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactEmptyComponent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactInstanceHandles from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactNativeComponent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module ReactUpdates from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDefaultInjection.js
    Unable to resolve module regenerator/runtime from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/Initialization/InitializeJavaScriptAppEngine.js
    Unable to resolve module ReactUpdates from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/MessageQueue.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/MessageQueue.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/MessageQueue.js
    Unable to resolve module ReactPerf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/BridgeProfiling.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/System/JSTimers/JSTimersExecution.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/System/JSTimers/JSTimersExecution.js
    Unable to resolve module performanceNow from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/System/JSTimers/JSTimersExecution.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/System/JSTimers/JSTimersExecution.js
    Unable to resolve module ReactInstanceHandles from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Inspector/InspectorUtils.js
    Unable to resolve module ReactInstanceMap from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Inspector/InspectorUtils.js
    Unable to resolve module ReactElement from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module ReactPerf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module ReactReconciler from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module ReactUpdateQueue from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module ReactUpdates from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module emptyObject from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module instantiateReactComponent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module shouldUpdateReactComponent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeMount.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeTagHandles.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeTagHandles.js
    Unable to resolve module ReactCurrentOwner from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/findNodeHandle.js
    Unable to resolve module ReactInstanceMap from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/findNodeHandle.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/findNodeHandle.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/findNodeHandle.js
    Unable to resolve module emptyFunction from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/EventEmitter.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/EventEmitter.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/EventSubscriptionVendor.js
    Unable to resolve module performanceNow from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/PerformanceLogger.js
    Unable to resolve module promise/setimmediate/es6-extensions from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Promise.js
    Unable to resolve module promise/setimmediate/done from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Promise.js
    Unable to resolve module stacktrace-parser from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/JavaScriptAppEngine/Initialization/parseErrorStack.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Geolocation/Geolocation.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Geolocation/Geolocation.js
    Unable to resolve module SyntheticEvent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/IOSNativeBridgeEventPlugin.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/IOSNativeBridgeEventPlugin.js
    Unable to resolve module EventConstants from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/event/EventPropagators.js
    Unable to resolve module EventPluginHub from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/event/EventPropagators.js
    Unable to resolve module accumulateInto from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/event/EventPropagators.js
    Unable to resolve module forEachAccumulated from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/event/EventPropagators.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/core/mergeHelpers.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/core/mergeHelpers.js
    Unable to resolve module ReactMultiChildUpdateTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDOMIDOperations.js
    Unable to resolve module ReactPerf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeDOMIDOperations.js
    Unable to resolve module CallbackQueue from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeReconcileTransaction.js
    Unable to resolve module PooledClass from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeReconcileTransaction.js
    Unable to resolve module Transaction from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeReconcileTransaction.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Interaction/InteractionManager.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Interaction/InteractionManager.js
    Unable to resolve module isNode from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/core/Map.js
    Unable to resolve module Object.assign from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeTextComponent.js
    Unable to resolve module EventConstants from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module EventPluginUtils from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module ReactInstanceHandles from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module ResponderSyntheticEvent from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module ResponderTouchHistoryStore from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module accumulate from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module keyOf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/browser/eventPlugins/ResponderEventPlugin.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react/platformImplementations/universal/worker/UniversalWorkerNodeHandle.js
    Unable to resolve module ReactMultiChild from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeBaseComponent.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeBaseComponent.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/NativeMethodsMixin.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/flattenStyle.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/precomputeStyle.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/MatrixMath.js
    Unable to resolve module EventPluginHub from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeEventEmitter.js
    Unable to resolve module ReactEventEmitterMixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeEventEmitter.js
    Unable to resolve module EventConstants from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeEventEmitter.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeEventEmitter.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactNative/ReactNativeStyleAttributes.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Image/ImageStylePropTypes.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Image/ImageResizeMode.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/LayoutPropTypes.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/TransformPropTypes.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Text/TextStylePropTypes.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/View/ViewStylePropTypes.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/RCTLog.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/ActivityIndicatorIOS/ActivityIndicatorIOS.ios.js
    Unable to resolve module ReactPropTypeLocations from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/StyleSheetValidation.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/StyleSheetValidation.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/View/View.js
    Unable to resolve module ReactPropTypeLocationNames from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/createStrictShapeTypeChecker.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/createStrictShapeTypeChecker.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/requireNativeComponent.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/DatePicker/DatePickerIOS.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Image/Image.ios.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Image/Image.ios.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Image/Image.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/EdgeInsetsPropType.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/Dimensions.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/ListView/ListView.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/ListView/ListViewDataSource.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/ListView/ListViewDataSource.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/ScrollView/ScrollView.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/StyleSheet/PointPropType.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/ScrollResponder.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Modal/Modal.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigator.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigator.js
    Unable to resolve module rebound from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigator.js
    Unable to resolve module emptyFunction from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigation/NavigationContext.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigation/NavigationContext.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/Navigation/NavigationEvent.js
    Unable to resolve module immutable from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/NavigatorBreadcrumbNavigationBar.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/NavigatorBreadcrumbNavigationBar.js
    Unable to resolve module keyOf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/buildStyleInterpolator.js
    Unable to resolve module onlyChild from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react_contrib/StaticContainer/StaticContainer.js
    Unable to resolve module immutable from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CustomComponents/Navigator/NavigatorNavigationBar.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Navigation/NavigatorIOS.ios.js
    Unable to resolve module ReactChildren from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Picker/PickerIOS.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/ProgressViewIOS/ProgressViewIOS.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/SliderIOS/SliderIOS.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/SwitchIOS/SwitchIOS.ios.js
    Unable to resolve module ReactInstanceMap from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Text/Text.js
    Unable to resolve module TouchEventUtils from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react_contrib/interactions/Touchable/Touchable.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react_contrib/interactions/Touchable/Touchable.js
    Unable to resolve module PooledClass from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react_contrib/pooledClasses/BoundingDimensions.js
    Unable to resolve module PooledClass from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/react_contrib/pooledClasses/Position.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/TextInput/TextInput.js
    Unable to resolve module ReactChildren from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/TextInput/TextInput.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/TextInput/TextInput.js
    Unable to resolve module emptyFunction from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/TextInput/TextInput.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/TextInput/TextInput.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/mixInEventEmitter.js
    Unable to resolve module keyOf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/mixInEventEmitter.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/vendor/emitter/EventHolder.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.js
    Unable to resolve module onlyChild from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/ensurePositiveDelayProps.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/ToastAndroid/ToastAndroid.ios.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js
    Unable to resolve module cloneWithProps from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js
    Unable to resolve module keyOf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js
    Unable to resolve module onlyChild from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/ensureComponentIsNative.js
    Unable to resolve module react-timer-mixin from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js
    Unable to resolve module keyOf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Animated/Animated.js
    Unable to resolve module requestAnimationFrame from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Animated/Animated.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/WebView/WebView.ios.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Components/WebView/WebView.ios.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/AlertIOS.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/AppRegistry/AppRegistry.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/renderApplication.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Inspector/ElementProperties.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/WarningBox.js
    Unable to resolve module rebound from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/ReactIOS/WarningBox.js
    Unable to resolve module ReactCurrentOwner from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Devtools/setupDevtools.js
    Unable to resolve module ReactInstanceHandles from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Devtools/setupDevtools.js
    Unable to resolve module ReactReconciler from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Devtools/setupDevtools.js
    Unable to resolve module ReactDefaultPerf from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/RCTRenderingPerf.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/RCTRenderingPerf.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/AppStateIOS/AppStateIOS.ios.js
    Unable to resolve module warning from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Utilities/BackAndroid.ios.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CameraRoll/CameraRoll.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/CameraRoll/CameraRoll.js
    Unable to resolve module ReactPropTypes from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.js
    Unable to resolve module keyMirror from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/LinkingIOS/LinkingIOS.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Settings/Settings.ios.js
    Unable to resolve module invariant from /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/Vibration/VibrationIOS.ios.js
    Webpack dev server listening at  http://localhost:8082
    Hash: 4a300325144078ccdc4f
    Version: webpack 1.12.2
    Time: 949ms
           Asset    Size  Chunks             Chunk Names
    index.ios.js  432 kB       0  [emitted]  index.ios
    chunk    {0} index.ios.js (index.ios) 331 kB [rendered]
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'LinkedStateMixin' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 88:22-49
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'ReactComponentWithPureRenderMixin' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 90:21-65
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'ReactUpdates' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 93:20-43
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'cloneWithProps' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 94:20-45
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'ReactFragment' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 95:20-44
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'update' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 96:12-29
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'ReactDefaultPerf' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 101:28-55
    
    ERROR in ./~/react-native/Libraries/react-native/react-native.js
    Module not found: Error: Cannot resolve module 'ReactTestUtils' in /Users/oliverturner/Sites/xpmt/react-native/adampash/react-native-hot-redux-starter/node_modules/react-native/Libraries/react-native
     @ ./~/react-native/Libraries/react-native/react-native.js 102:33-58
    webpack: bundle is now VALID.
    
    Could not find dependencies.
    Ensure dependencies are installed - run 'npm install' from project root.
    
    react-native packager ready...
    
    opened by oliverturner 2
  • getting error

    getting error "[WDS] Disconnected!"

    I had followed steps in README.md, but I got error in iphone simulator 2015-12-23 2 46 35

    in chrome console panel, 2015-12-23 2 47 42

    even I reload in simulator, it doesn't work. how can i fix this?

    opened by QuadFlask 1
  • Sourcemap not loaded

    Sourcemap not loaded

    I always seem to get Unable to load source map: ... when I use the hot-loader. Any idea what might be causing this? I see source-map type sourcemap is used here https://github.com/adampash/react-native-hot-redux-starter/blob/master/webpack.config.js#L9 and in the server logs the file is requested but not available

    Launching Dev Tools...
    transforming [========================================] 100% 310/310
    Launching Dev Tools...
    
    [10:00:33 PM] <START> request:/index.ios.bundle
    [10:00:33 PM] <END>   request:/index.ios.bundle (9ms)
    [10:00:33 PM] <START> request:/index.ios.bundle
    [10:00:33 PM] <END>   request:/index.ios.bundle (8ms)
    Cannot GET /index.ios.js.map
    
    [10:00:36 PM] <START> request:/index.ios.bundle
    [10:00:36 PM] <END>   request:/index.ios.bundle (11ms)
    

    The babel-loader says the option is ignored and to use the devtool option in webpack https://github.com/babel/babel-loader

    I think it's because the map is stored to path.resolve(__dirname, 'build') but under hot-loading the browser queries config.output.publicPath = 'http://localhost:8082/'

    opened by morenoh149 1
Owner
Adam Pash
Adam Pash
Barton Hammond 4.6k Jan 2, 2023
React Native Starter App with NativeBase + CodePush + Redux

Discontinued in favour of ReactNativeSeed.com Native Starter Kit v6.1.0 A Starter Kit for React Native + NativeBase + React Navigation + Redux + CodeP

null 1.6k Dec 9, 2022
Just a starter code to use redux and react-native with Login

React Native Redux Starter Code Login using Redux, Redux Saga and Redux Storage Good practice to create a Login using Redux, Redux Saga and Redux Stor

Sibelius' Projects 177 Oct 30, 2022
React native starter using typescript and redux-saga.

?? React Native Boilerplate - May 2021 React Native Boilerplate is a starting point for React Native application. This project is configured with redu

Vilmar CabaΓ±ero 2 Feb 3, 2022
Pepperoni - React Native App Starter Kit for Android and iOS

Futurice React Native Starter Kit ⚠️ Deprecation Warning Dear community, as time moved on so did React Native and we've not been able to provide conti

Futurice 4.6k Jan 4, 2023
πŸš€A powerful react native starter template that bootstraps development of your mobile application

React Native Starter ?? View Demo | Download | More templates | Support forum You're viewing the new and updated version of React Native Starter, prev

Flatlogic 2k Jan 5, 2023
Professional react-native starter kit with everything you'll ever need to deploy rock solid apps

WARNING This starter kit has been deprecated and is no longer being actively maintained by Ueno. React Native Starter The Professional React Native St

Ueno: A full-service agency 577 Oct 26, 2022
A react-native starter kit using RN0.63, Flipper support, LogBox, AndroidX, Hooks workflow, easy-peasy, code-push, Themes support and much more

cd A GOOD, up to date and easy to use starter and learning tool for beginners to intermediate. (IOS and Android ready) NEW React-Native updated to 0.6

HARISH JANGRA 254 Oct 29, 2022
React Native Starter Kit with Firebase Auth and Facebook Login

React Native Starter Kit ?? Bootstrap your app development by using this awesome react native starter kit, integrated with Firebase Auth and Facebook

Instamobile 393 Jan 2, 2023
✨ A React Native Starter with 10+ commonly used libraries ✨

React Native Starter ✨ A React Native Starter with 10+ commonly used libraries ✨ Overview Anyone who had to setup a React Native project from scratch

Adegboye Josiah 29 Dec 26, 2022