'Metro Bundler on Browser is not displayed

Im new on react native. npm start is starting the Metro Bundler on Terminal but no on the Browser.by "w" cmd Metro Bundler THE MENU ON THE LEFT is NOT displayed on Browser



Solution 1:[1]

I am assuming that you would like to open the additional debug tools that are available with React Native.

In the terminal that is spawned by the Metro bundler you can enter the "d" key and it should open the developer menu for both the iOS and Android device that you have connected. In the developer menu you can then launch additional debug tools like Flipper by choosing "Open Debugger" or React DevTools in Chrome by choosing "Open React DevTools".

If that doesn't work, what usually works for me is entering the key combination - ? + D [On Mac for iOS] or ? + M [On Mac for Android] | Ctrl + M [On Windows for Android]. This will also open the developer menu on the device or emulator/simulator that you have connected to Metro.

NOTE - You tagged microsoft-metro when it should've been metro-bundler

Additional Resources:

What you should expect:

developer-menu-ios

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 BrandonWMA