文件操作 - readme.md
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/global-directory/readme.md
编辑文件内容
# 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
修改文件时间
将文件时间修改为当前时间的前一年
删除文件