Skip to content

Instantly share code, notes, and snippets.

@kara-ryli
Created June 17, 2017 01:54
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 kara-ryli/8a3f1e8dd2963dac29b68aa19fc75da8 to your computer and use it in GitHub Desktop.
Save kara-ryli/8a3f1e8dd2963dac29b68aa19fc75da8 to your computer and use it in GitHub Desktop.
Find files that reference a node module
# can add this to ~/.bash_profile
node-find() {
grep -r --exclude-dir node_modules --include "*.js" "require([\"']$1[\"'/]" . | cut -d ':' -f1 | sort | uniq
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment