文件名称:fix-path:从GUI应用程序运行时修复macOS上的$ PATH
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-15 01:35:50
JavaScript
修复路径 从GUI应用程序运行时修复macOS上的$PATH 对于Electron应用程序很有用,因为macOS上的GUI应用程序不会继承点文件(.bashrc / .bash_profile / .zshrc / etc)中定义的$PATH 。 安装 $ npm install fix-path 用法 const fixPath = require ( 'fix-path' ) ; console . log ( process . env . PATH ) ; //=> '/usr/bin' fixPath ( ) ; console . log ( process . env . PATH ) ; //=> '/usr/local/bin:/usr/bin' 有关的 -从外壳获取$PATH
【文件预览】:
fix-path-main
----index.js(284B)
----test.js(137B)
----package.json(740B)
----index.test-d.ts(93B)
----readme.md(531B)
----.github()
--------funding.yml(91B)
--------workflows()
----license(1KB)
----index.d.ts(418B)
----.gitignore(23B)
----.npmrc(19B)
----.editorconfig(175B)
----.gitattributes(19B)