Answers for "react native not using the metro server"

0

metro server not running react native

//in another terminal run following command

npm start
//or
yarn start
//or
react-native start

//Also you can add --reset-cache to delete all the data from cache folder
Posted by: Guest on September-29-2021
0

react native cannot connect to metro server

echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
watchman shutdown-server

 Or
 
 echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_watches && echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_queued_events && echo 999999 | sudo tee -a /proc/sys/fs/inotify/max_user_instances && watchman shutdown-server && sudo sysctl -p
Posted by: Guest on November-16-2020

Code answers related to "react native not using the metro server"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language