Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

import-global

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

import-global

Import a globally installed module

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54K
decreased by-39.48%
Maintainers
1
Weekly downloads
 
Created
Source

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().

  • resolve-global - Resolve the path of a globally installed module
  • import-from - Import a module from a given path
  • resolve-from - Resolve the path of a module from a given path
  • is-installed-globally - Check if your package was installed globally
  • global-dirs - Get the directory of globally installed packages and binaries

License

MIT © Sindre Sorhus

Keywords

FAQs

Package last updated on 25 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc