/npx-visualize-bundle

Analyse your React Native bundle in 1 command

Primary LanguageTypeScriptMIT LicenseMIT

npx visualize-bundle

npx visualize-bundle allows you to inspect your React Native bundle in just one command and to diagnose big modules.

Just like on the web, you want to make your JavaScript file as small as possible. Whenever your app opens, the phone needs to parse the whole JavaScript bundle before it can run the React Native code. On lower-end phones, a big bundle can be a bottleneck on startup performance.

This package simply downloads the bundle and the sourcemap from the running packager and uses source-map-explorer to visualize it.

Usage

No installation is needed, just type

npx visualize-bundle

into the command line. The npx command is available with npm 5.2 or later.

By default the iOS production bundle is being analyzed. The following options are available:

-a, --android  analyse Android bundle 
-d, --dev      analyse developement bundle
-v, --version  output the version number
-h, --help     output usage information

Development

Contributions are welcome - You can clone the repository and start the tool using npm start.

License

MIT