which-promise
Promisified version of node-which
Last updated 11 years ago by shinnn .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install which-promise 
SYNC missed versions from official npm registry.

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

Current Tags

  • 1.0.0                                ...           latest (11 years ago)

2 Versions

  • 1.0.0                                ...           11 years ago
  • 0.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 1
Dependencies (3)
Dev Dependencies (4)

Copyright 2013 - present © cnpmjs.org | Home |