Error: Bundling Failed: Typeerror: Cannot Read Property 'bindings' Of Null
I am also facing a same issue while running the react-native app. The version i am using is as follows: React-Native:0.57.1 react-native-cli:2.0.1 node:v8.11.3 npm:5.6.0 Babel Vers
Solution 1:
I was using babel-preset-react-native
in dependency which has been deprecated instead "metro-react-native-babel-preset": "^0.47.0" is now being used. So, I updated this in .babelrc
file and I added the below line:
{"presets":["module:metro-react-native-babel-preset"]}
The above code resolved the issue.
Post a Comment for "Error: Bundling Failed: Typeerror: Cannot Read Property 'bindings' Of Null"