mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
485 B
20 lines
485 B
13 years ago
|
module.exports = bin
|
||
|
|
||
|
var npm = require("./npm.js")
|
||
|
, output = require("./utils/output.js")
|
||
|
|
||
|
bin.usage = "npm bin\nnpm bin -g\n(just prints the bin folder)"
|
||
|
|
||
|
function bin (args, cb) {
|
||
|
var path = require("path")
|
||
|
, b = npm.bin
|
||
|
, PATH = (process.env.PATH || "").split(":")
|
||
|
|
||
|
output.write(b, function (er) { cb(er, b) })
|
||
|
|
||
|
if (npm.config.get("global") && PATH.indexOf(b) === -1) {
|
||
|
output.write("(not in PATH env variable)"
|
||
|
,npm.config.get("logfd"))
|
||
|
}
|
||
|
}
|