Bakhtina Sofya b84cb877be 1st comm | il y a 2 mois | |
---|---|---|
.. | ||
index.js | il y a 2 mois | |
license | il y a 2 mois | |
package.json | il y a 2 mois | |
readme.md | il y a 2 mois |
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