React Native-dev server returned 500

I am trying to connect a response component with my native Android application (the time when I experiment with the hello world project), but its error on the next error. Any help would be appreciated.

Pkg.json config

"respond": "^ 16.0.0-alpha.12", "response-native": "^ 0.44.0",

Stacktrace

: UnableToResolveError: cannot resolve the module react/lib/ReactPropTypesfrom /Users/myMac/Documents/Androidapps/TestReactNative/node_modules/react-native/Libraries/Image/Image.android.js: the module does not exist in the module map or in these directories:

+4
source share
1 answer

You can try:

npm install react@16.0.0-alpha.6 --save

+4
source

Source: https://habr.com/ru/post/1676440/


All Articles