3.0.1 • Published 8 years ago

app-size v3.0.1

Weekly downloads
20
License
MIT
Repository
github
Last release
8 years ago

app-size Build Status

Get an .app's size in byte

Install

$ npm install --save app-size

Usage

const appSize = require('app-size');

appSize('Safari').then(size => {
	console.log(size);
	//=> 34058118
});

appSize('/Applications/Safari.app').then(size => {
	console.log(size);
	//=> 34058118
});

appSize('com.apple.Safari').then(size => {
	console.log(size);
	//=> 34058118
});

CLI

$ npm install --global app-size
$ app-size --help

  Example
    $ app-size Safari
    $ app-size /Applications/Safari.app
    $ app-size com.apple.Safari

License

MIT © Andreas Gillström

3.0.1

8 years ago

3.0.0

8 years ago

2.0.0

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago