Get the
$PATH
from the shell
Useful for Electron apps as GUI apps on macOS do not inherit the $PATH
defined in your dotfiles (.bashrc/.bash_profile/.zshrc/etc).
$ npm install shell-path
When executed from a GUI app on macOS:
import {shellPath} from 'shell-path';
console.log(process.env.PATH);
//=> '/usr/bin'
console.log(await shellPath());
//=> '/usr/local/bin:/usr/bin:...'
Return a promise for the $PATH
.
Returns the $PATH
.
- fix-path - Fix the $PATH on macOS when run from a GUI app
- shell-env - Get environment variables from the shell
- shell-history - Get the command history of the user's shell