A browserify plugin to analyse bundle statistics
npm install discifydiscify is a browserify plugin that generatee graph and stats of your bundle. It'a lightweight alternative to disc.



npm install --save-dev discify
browserify --node -p discify entry.js
enjoy your /disc folder (you can specify output folder via -p [ discify --outdir some/other/dir ] )
`Advanced pipe
`
var b = browserify({
//opts
});
b.plugin(discify)
b.once('discified', Function.prototype); //this is emitted once discify has done generating maps & stuffs
``