Home > Blockchain >  Welcome to Metro! Fast - Scalable - Integrated
Welcome to Metro! Fast - Scalable - Integrated

Time:06-04

Hello Friends can you all help me to fix this problem my react project is not opening when i run npm start than this is coming pls see the image

             Welcome to Metro!
          Fast - Scalable - Integrated

To reload the app press "r" To open developer menu press "d"

Thank You have a nice day

CodePudding user response:

Since this message is not an error, you will need to access you project on http://localhost:3000/ and that's only it.

CodePudding user response:

It's react-native project . I think you just run npm start this will enable only metro in order to run App on mobile use below commands as well on new terminal window.

npx react-native run-android [for android]
npx react-native run-ios [for ios ]

Also don't close metro terminal otherwise your app would not run !!

Happy Coding

  • Related