JS Bundleの中身を見たい

ReactNativeアプリを実行する時、JSコードは Metoro によって JS Bundle という1つのファイルにバンドルされる。

そのバンドルの中身はローカルでMetoroが起動している状態の時に

http://localhost:8081/index.bundle?platform=ios&dev=true&minify=false

で確認することができる。

ファイルはデバイスのメモリに置かれているので、プロジェクトファイルに作成されることはない。

What is metro bundler in react-native? - Stack Overflow