lihai 8d6c751f49 feat: push 2 years ago
..
index.d.ts 8d6c751f49 feat: push 2 years ago
index.js 8d6c751f49 feat: push 2 years ago
license 8d6c751f49 feat: push 2 years ago
package.json 8d6c751f49 feat: push 2 years ago
readme.md 8d6c751f49 feat: push 2 years ago

readme.md

resolve-global Build Status

Resolve the path of a globally installed module

Install

$ npm install resolve-global

Usage

$ npm install --global cat-names
const resolveGlobal = require('resolve-global');

console.log(resolveGlobal('cat-names'));
//=> '/usr/local/lib/node_modules/cat-names'

API

resolveGlobal(moduleId)

Throws if the module can't be found.

resolveGlobal.silent(moduleId)

Returns undefined instead of throwing if the module can't be found.

moduleId

Type: string

What you would use in require().

Related

License

MIT © Sindre Sorhus