node closes once you open app react-native
Open Your Project Folder in IDE like Visual Studio Code etc Click on node_modules folder Click on metro-config folder Click on src folder Click on default folder Open blacklist.js file and replace the following code var sharedBlacklist = [ /node_modules[/\\]react[/\\]dist[/\\].*/, /website\/node_modules\/.*/, /heapCapture\/bundle\.js/, /.*\/__tests__\/.*/ ]; with var sharedBlacklist = [ /node_modules[\/\\]react[\/\\]dist[\/\\].*/, /website\/node_modules\/.*/, /heapCapture\/bundle\.js/, /.*\/__tests__\/.*/ ];
Here is what the above code is Doing:
1. It’s opening the blacklist.js file in the metro-config folder.
2. It’s replacing the code in the blacklist.js file with the code that we have provided.