EroticDungeonGame/node_modules/global-directory/readme.md
3944Realms 8c4ce2709c fix(兼容emotescraft和rideeverything): 修改骑乘逻辑和tick取消EmtoesCraft表情
使用Mixin中检测绕过骑乘取消和开始骑乘逻辑,避免原版的unRide方法导致非预期的退出设备;在每tick检测,如果在设备上则停止表情动画
2026-02-20 14:45:57 +08:00

61 lines
1.3 KiB
Markdown

# global-directory
> Get the directory of globally installed packages and binaries
Uses the same resolution logic as `npm` and `yarn`.
## Install
```sh
npm install global-directory
```
## Usage
```js
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`.
## 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
- [is-installed-globally](https://github.com/sindresorhus/is-installed-globally) - Check if your package was installed globally