List modules bundled by Browserify

900 Views Asked by At

I am using Browserify and Grunt to bundle our RendrJS webapp. I would like to analyze the bundle to see which modules it contains to see if any code is superfluous. This can happen since in Rendr some js code might only run on the server.

How do I get a list of the contents of the bundle. I have tried:

browserifyOptions: { 'list': true }

but it doesn't seem to have any effect. We are using Browserify 2.

1

There are 1 best solutions below

2
On

Saw your question, dug up a tiny old script and just now pushed browserify-inspect-bundle to npm, grab it here:

https://www.npmjs.com/package/browserify-inspect-bundle

Usage is:

npm install -g browserify-inspect-bundle
browserify-inspect-bundle /path/to/your/bundle.js

This should get you something useful.