Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/is-installed-globally
Check if your package was installed globally
https://github.com/sindresorhus/is-installed-globally
Last synced: about 1 month ago
JSON representation
Check if your package was installed globally
- Host: GitHub
- URL: https://github.com/sindresorhus/is-installed-globally
- Owner: sindresorhus
- License: mit
- Created: 2017-06-25T22:21:39.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2023-11-06T19:26:27.000Z (about 1 year ago)
- Last Synced: 2024-03-26T07:56:10.039Z (8 months ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 71
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
- awesome - sindresorhus/is-installed-globally - Check if your package was installed globally (others)
README
# is-installed-globally
> Check if your package was installed globally
Can be useful if your CLI needs different behavior when installed globally and locally.
## Install
```sh
npm install is-installed-globally
```## Usage
```js
import isInstalledGlobally from 'is-installed-globally';// With `npm install your-package`
console.log(isInstalledGlobally);
//=> false// With `npm install --global your-package`
console.log(isInstalledGlobally);
//=> true
```## Related
- [import-global](https://github.com/sindresorhus/import-global) - Import a globally installed module
- [resolve-global](https://github.com/sindresorhus/resolve-global) - Resolve the path of a globally installed module
- [global-directory](https://github.com/sindresorhus/global-directory) - Get the directory of globally installed packages and binaries