1.1.0 • Published 8 years ago
browserify-size v1.1.0
browserify-size 
Get the browserified size of a module after minification and gzipping
Install
$ npm install --save browserify-sizeFor the CLI:
$ npm install --global browserify-sizeUsage
API
var browserifySize = require('browserify-size')
browserifySize('xtend', callback)
//=> callback(null, 366)CLI
# arg
$ browserify-size xtend
# stdin
$ echo xtend | browserify-size
#=> 366 BAPI
browserifySize(name, [options], callback) -> undefined
name
Required
Type: string
The package name or a path to a local package.
options
version
Type: string
Default: ''
The package version to use. Only applies when downloading from npm.
cwd
Type: string
Default: process.cwd()
callback
Required
Type: function
Arguments: err, bytes
A callback to be called with the number of bytes in the resulting bundle after minification and gzipping.
License
MIT © Ben Drucker