import-global
Import a globally installed module
Last updated 9 years ago by sindresorhus .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install import-global 
SYNC missed versions from official npm registry.

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

Current Tags

  • 0.1.0                                ...           latest (9 years ago)

1 Versions

  • 0.1.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 2
This Month 2
Last Day 0
Last Week 0
Last Month 1
Dependencies (1)
Dev Dependencies (3)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |