Answers for "node execute local bin"

0

node execute local bin

# in your .zshrc or .bashrc:
function npm-do { (PATH=$(npm bin):$PATH; eval $@;) }
# restart zsh of course
# inside your project directory:
npm-do tsc --init
npm-do figlet hi # or whatever
Posted by: Guest on May-20-2021

Code answers related to "node execute local bin"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language