Generate commands that add node_modules/.bin
to PATH. Supports Linux, MacOS and Windows.
bash
cargo install npx-bin-helper
bash
npx-bin-helper -s <SHELL>
This will generate commands to set environment variables depending on your shell type.
Currently npx-bin-helper supports the following shells:
bash
(Including Git Bash on Windows)zsh
fish
powershell
(Windows, MacOS, Linux)For example:
bash
npx-bin-helper -s bash
Output:
bash
export _NPX_BIN="/path/to/project/node_modules/.bin"
export PATH="/path/to/project/node_modules/.bin:..."
To generate and evaluate commands automatically when changing directory, you need to set up your shell.
Add the following to .bashrc
bash
eval "$(npx-bin-helper setup -s bash)"
Add the following to .zshrc
zsh
eval "$(npx-bin-helper setup -s zsh)"
Create ~/.config/fish/conf.d/npx-bin-helper.fish
and add the following to it
fish
npx-bin-helper setup -s fish | source
Add the following to your profile
powershell
npx-bin-helper setup -s fish | Out-String | Invoke-Expression