2.0.0 • Published 8 years ago

osx-app v2.0.0

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

osx-app Build Status

Get information about an app in OS X systems.

Install

$ npm install --save osx-app

Usage

const osxApp = require('osx-app');

osxApp('Safari').then(res => {
	console.log(res);
	/*
	{
		path: '/Applications/Safari.app',
		bundle: 'com.apple.Safari',
		size: 34058118,
		version: '8.0.6'
	}
	*/
});

CLI

$ npm install --global osx-app
$ osx-app --help

  Example
    $ osx-app Safari

License

MIT © Andreas Gillström