1.0.1 • Published 6 years ago

resolve-binary v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

resolve-bin build status

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');

// package.json: "bin": "bin/tap.js"
resolveBin('tap', function (err, bin) {
  if (err) return console.error(err);
  console.log(bin);  
});

// => [..]/resolve-bin/node_modules/tap/bin/tap.js

Installation

npm install resolve-bin

API

generated with docme

License

MIT