Skip to content

Instantly share code, notes, and snippets.

@mafintosh
Created May 28, 2018 19:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mafintosh/1d867728cba756a01689af5e4474943f to your computer and use it in GitHub Desktop.
Save mafintosh/1d867728cba756a01689af5e4474943f to your computer and use it in GitHub Desktop.
// by @noffle
autoinstall () {
local MODULES=$(cat $1 | grep "require('.*')" | sed "s/.*require('\(.*\)')/\1/" | grep -v '^\.' | tr '\n' ' ')
shift
shift
npm install $MODULES $@
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment