1.1.0 • Published 7 years ago

browserify-size v1.1.0

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

browserify-size Build Status

Get the browserified size of a module after minification and gzipping

Install

$ npm install --save browserify-size

For the CLI:

$ npm install --global browserify-size

Usage

API

var browserifySize = require('browserify-size')

browserifySize('xtend', callback)
//=> callback(null, 366)

CLI

# arg
$ browserify-size xtend
# stdin
$ echo xtend | browserify-size
#=> 366 B

API

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