@httptoolkit/osx-find-executable
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

osx-find-executable

Part of HTTP Toolkit: powerful tools for building, testing & debugging HTTP(S)

Find an app's executable on Mac.

This is a fork of https://github.com/juliangruber/osx-find-executable, which appears to now be unmaintained.

Key differences:

  • This fork includes a fallback (manually searching the apps in /Applications) if Spotlight is disabled, instead of just claiming that all apps can't be found.
  • This fork can also find an executable given a path to an app folder, not only using bundle id.
  • This fork returns promises throughout, and doesn't use callbacks.
  • This fork includes type definitions for TypeScript.

Installation

$ npm install @httptoolkit/osx-find-executable

Usage

const { findExecutableById } = require('@httptoolkit/osx-find-executable')

findExecutableById('com.google.Chrome').then((exec) => {
  // => /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
});

For more detailed examples, take a look at the tests in test.js

API

findExecutableById(id)

Takes a bundle id (like com.google.Chrome), finds the corresponding bundle on disk, and returns a promise for the path to the executable within.

findExecutableInApp(appPath)

Takes a path to an app bundle (a .app directory, like /Applications/Google Chrome.app), and returns a promise for the path to the executable within.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @httptoolkit/osx-find-executable

Weekly Downloads

576

Version

2.0.1

License

MIT

Unpacked Size

10.1 kB

Total Files

6

Last publish

Collaborators

  • pimterry