Bakhtina Sofya b84cb877be 1st comm 2 weeks ago
..
index.js b84cb877be 1st comm 2 weeks ago
license b84cb877be 1st comm 2 weeks ago
package.json b84cb877be 1st comm 2 weeks ago
readme.md b84cb877be 1st comm 2 weeks ago

readme.md

import-global Build Status

Import a globally installed module

Please don't use this unless absolutely necessary. Local dependencies should be preferred.

Install

$ npm install import-global

Usage

$ npm install --global cat-names
const importGlobal = require('import-global');
const catNames = importGlobal('cat-names');

catNames.random();
//=> 'Snuggles'

API

importGlobal(moduleId)

Throws if the module can't be found.

importGlobal.silent(moduleId)

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

moduleId

Type: string

What you would use in require().

Related

License

MIT © Sindre Sorhus