which-promise

1.0.0 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    225,400
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    225,400
  • 0.0.0
    1

Package Sidebar

Install

npm i which-promise

Weekly Downloads

225,401

Version

1.0.0

License

MIT

Last publish

Collaborators

  • shinnn