app-path
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

app-path

Get the path to an app (macOS)

Install

$ npm install app-path

Usage

import appPath from 'app-path';

console.log(await appPath('Safari'));
//=> '/Applications/Safari.app'

console.log(await appPath('com.apple.Safari'));
//=> '/Applications/Safari.app'

console.log(appPath.sync('Safari'));
//=> '/Applications/Safari.app'

API

appPath(appName)

Returns a Promise<string> with the path to the app specified in appName. Rejects when run on any other operating system than macOS.

appPath.sync(appName)

Returns the path to the app specified in appName. Throws when run on any other operating system than macOS.

appName

Type: string

An app name or bundle identifier.

Related

Package Sidebar

Install

npm i app-path

Weekly Downloads

137,881

Version

4.0.0

License

MIT

Unpacked Size

121 kB

Total Files

6

Last publish

Collaborators

  • sindresorhus