which-promise

Promisified version of node-which


Keywords
which, bin, binary, path, executable, resolve, find, check
License
MIT
Install
npm install which-promise@1.0.0

Documentation

which-promise

NPM version Build Status Build status Coverage Status Dependency Status devDependency Status

Promisified version of node-which:

Finds the first instance of a specified executable in the PATH environment variable.

const whichPromise = require('which-promise');

whichPromise('ls').then(resolvedPath => {
  resolvedPath; //=> '/bin/ls'
});

whichPromise('ls', {path: './'}).catch(err => {
  err.message; //=> 'not found: ls'
});

Installation

Use npm.

npm install which-promise

API

const whichPromise = require('which-promise');

whichPromise(cmd [, options])

cmd: String (directly passed to node-which's first argument)
options: Object (used as node-which options)
Return: Object (Promise)

License

The Unlicense