Skip to content

Instantly share code, notes, and snippets.

@zhangchiqing
Created January 5, 2016 19:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangchiqing/dff06f97e0697622a0fb to your computer and use it in GitHub Desktop.
Save zhangchiqing/dff06f97e0697622a0fb to your computer and use it in GitHub Desktop.
Shortcut to run local node module
# Put the following code into your .bash_profile or .zshrc
local_node_module() {
./node_modules/.bin/"$*"
}
alias nn="local_node_module"
# `nn gulp` is now equivalent to `./node_module/.bin/gulp`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment