$ cnpm install import-global
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
Copyright 2013 - present © cnpmjs.org | Home |