Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

hasbin

springernature761.9kMIT1.2.3TypeScript support: definitely-typed

Check whether a binary exists in the PATH environment variable

bin, check, path

readme

HasBin

Check whether a binary exists in the PATH environment variable.

NPM version Node.js version support Build status Dependencies MIT licensed

var hasbin = require('hasbin');

// Check if a binary exists
hasbin('node', function (result) {
    // result === true
});
hasbin('wtf', function (result) {
    // result === false
});

// Check if all binaries exist
hasbin.all(['node', 'npm'], function (result) {
    // result === true
});

// Check if at least one binary exists
hasbin.some(['node', 'wtf'], function (result) {
    // result === true
});

// Find the first available binary
hasbin.first(['node', 'npm'], function (result) {
    // result === 'node'
});

Table Of Contents

Install

Install HasBin with npm:

npm install hasbin

Usage

hasbin(binaryName, callback)

Check whether a binary exists on one of the paths in process.env.PATH. Calls back with true if it does.

// Arguments
binaryName = String
callback = Function(Boolean)
// Example
hasbin('node', function (result) {
    // result === true
});

hasbin.sync(binaryName)

Synchronous hasbin.

// Arguments
binaryName = String
return Boolean
// Example
result = hasbin.sync('node');

hasbin.all(binaryNames, callback)

Check whether all of a set of binaries exist on one of the paths in process.env.PATH. Calls back with true if all of the binaries do. Aliased as hasbin.every.

// Arguments
binaryNames = Array(String)
callback = Function(Boolean)
// Example
hasbin.all(['node', 'npm'], function (result) {
    // result === true
});

hasbin.all.sync(binaryNames)

Synchronous hasbin.all. Aliased as hasbin.every.sync.

// Arguments
binaryNames = Array(String)
return Boolean
// Example
result = hasbin.all.sync(['node', 'npm']);

hasbin.some(binaryNames, callback)

Check whether at least one of a set of binaries exists on one of the paths in process.env.PATH. Calls back with true if at least one of the binaries does. Aliased as hasbin.any.

// Arguments
binaryNames = Array(String)
callback = Function(Boolean)
// Example
hasbin.some(['node', 'npm'], function (result) {
    // result === true
});

hasbin.some.sync(binaryNames)

Synchronous hasbin.some. Aliased as hasbin.any.sync.

// Arguments
binaryNames = Array(String)
return Boolean
// Example
result = hasbin.some.sync(['node', 'npm']);

hasbin.first(binaryNames, callback)

Checks the list of binaryNames to find the first binary that exists on one of the paths in process.env.PATH. Calls back with the name of the first matched binary if one exists and false otherwise.

// Arguments
binaryNames = Array(String)
callback = Function(String|false)
// Example
hasbin.first(['node', 'npm'], function (result) {
    // result === 'node'
});

hasbin.first.sync(binaryNames)

Synchronous hasbin.first.

// Arguments
binaryNames = Array(String)
return String|false
// Example
result = hasbin.first.sync(['node', 'npm']);

Contributing

To contribute to HasBin, clone this repo locally and commit your code on a separate branch.

Please write unit tests for your code, and check that everything works by running the following before opening a pull-request:

make ci

License

HasBin is licensed under the MIT license.
Copyright © 2015, Springer Nature

changelog

Changelog

1.2.3 (2016-05-27)

  • Fix Windows 10 quoted PATH entries

1.2.2 (2016-05-05)

  • Support Node.js 6.x

1.2.1 (2016-02-09)

  • Update repository references to springernature
  • Update the license

1.2.0 (2016-01-06)

  • Add hasbin.first and hasbin.first.sync for finding the first available binary

1.1.3 (2015-11-09)

  • Support Node.js 5.x
  • Update dependencies

1.1.2 (2015-09-09)

  • Support Node.js 4.x

1.1.1 (2015-09-08)

  • Update dependencies
  • Add code coverage reporting

1.1.0 (2015-07-06)

  • Use the PATHEXT environment variable in Windows when looking for binaries
  • Fix an issue which broke Windows support
  • Update dependencies

1.0.0 (2015-06-23)

  • Stable release
  • Add io.js support
  • Use JSCS to check for code-style issues
  • Update dependencies

0.2.1 pre-release (2015-05-19)

  • Move the repository
  • Assign the copyright to Nature Publishing Group

0.2.0 pre-release (2015-05-14)

  • Catch errors

0.1.0 pre-release (2015-05-14)

  • Initial release