resolve-bin
Resolves the full path to the bin file of a given package by inspecting the "bin"
field in its package.json.
var resolveBin = require('resolve-bin');
resolveBin('tap', function (err, bin) {
if (err) return console.error(err);
console.log(bin);
});
Installation
npm install resolve-bin
API
###resolveBin(name, cb)
/**
* Resolves the full path to the bin file of a given package by inspecting the "bin" field in its package.json.
*
* @name resolveBin
* @function
* @param name {String} module name, i.e. 'tap'
* @param cb {Function} called back with the full path to the bin file of the module or an error if it couldn't be resolved
*/
License
MIT