peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
index.d.ts | před 2 roky | |
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
Resolve the path of a globally installed module
$ npm install resolve-global
$ npm install --global cat-names
const resolveGlobal = require('resolve-global');
console.log(resolveGlobal('cat-names'));
//=> '/usr/local/lib/node_modules/cat-names'
Throws if the module can't be found.
Returns undefined
instead of throwing if the module can't be found.
Type: string
What you would use in require()
.
MIT © Sindre Sorhus