Socket
Socket
Sign inDemoInstall

which-promise

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    which-promise

Promisified version of node-which


Version published
Weekly downloads
199K
decreased by-12.2%
Maintainers
1
Install size
46.7 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 09 Oct 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc