Socket
Socket
Sign inDemoInstall

global-directory

Package Overview
Dependencies
1
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    global-directory

Get the directory of globally installed packages and binaries


Version published
Weekly downloads
1.4M
increased by2.9%
Maintainers
1
Install size
20.2 kB
Created
Weekly downloads
 

Readme

Source

global-directory

Get the directory of globally installed packages and binaries

Uses the same resolution logic as npm and yarn.

Install

npm install global-directory

Usage

import globalDirectory from 'global-directory';

console.log(globalDirectory.npm.prefix);
//=> '/usr/local'

console.log(globalDirectory.npm.packages);
//=> '/usr/local/lib/node_modules'

console.log(globalDirectory.npm.binaries);
//=> '/usr/local/bin'

console.log(globalDirectory.yarn.packages);
//=> '/Users/sindresorhus/.config/yarn/global/node_modules'

API

globalDirectory

npm
yarn
packages

The directory with globally installed packages.

Equivalent to npm root --global.

binaries

The directory with globally installed binaries.

Equivalent to npm bin --global.

prefix

The directory with directories for packages and binaries. You probably want either of the above.

Equivalent to npm prefix --global.

  • import-global - Import a globally installed module
  • resolve-global - Resolve the path of a globally installed module
  • is-installed-globally - Check if your package was installed globally

Keywords

FAQs

Last updated on 06 Nov 2023

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc