Bakhtina Sofya b84cb877be 1st comm | 2 weeks ago | |
---|---|---|
.. | ||
index.js | 2 weeks ago | |
license | 2 weeks ago | |
package.json | 2 weeks ago | |
readme.md | 2 weeks ago |
Import a globally installed module
Please don't use this unless absolutely necessary. Local dependencies should be preferred.
$ npm install import-global
$ npm install --global cat-names
const importGlobal = require('import-global');
const catNames = importGlobal('cat-names');
catNames.random();
//=> 'Snuggles'
Throws if the module can't be found.
Returns null
instead of throwing if the module can't be found.
Type: string
What you would use in require()
.
MIT © Sindre Sorhus