npm.plugin.zsh 1.39 KB
Newer Older
1
(( $+commands[npm] )) && {
2
3
4
5
6
7
8
9
10
11
12
13
  rm -f "${ZSH_CACHE_DIR:-$ZSH/cache}/npm_completion"

  _npm_completion() {
    local si=$IFS
    compadd -- $(COMP_CWORD=$((CURRENT-1)) \
                 COMP_LINE=$BUFFER \
                 COMP_POINT=0 \
                 npm completion -- "${words[@]}" \
                 2>/dev/null)
    IFS=$si
  }
  compdef _npm_completion npm
14
}
15

16
17
# Install dependencies globally
alias npmg="npm i -g "
18

James Womack's avatar
James Womack committed
19
20
21
22
23
24
25
26
27
28
# npm package names are lowercase
# Thus, we've used camelCase for the following aliases:

# Install and save to dependencies in your package.json
# npms is used by https://www.npmjs.com/package/npms
alias npmS="npm i -S "

# Install and save to dev-dependencies in your package.json
# npmd is used by https://github.com/dominictarr/npmd
alias npmD="npm i -D "
29

30
31
32
# Force npm to fetch remote resources even if a local copy exists on disk.
alias npmF='npm i -f'

Ahmed Hisham Ismail's avatar
Ahmed Hisham Ismail committed
33
34
# Execute command from node_modules folder based on current directory
# i.e npmE gulp
35
alias npmE='PATH="$(npm bin)":"$PATH"'
36
37
38

# Check which npm modules are outdated
alias npmO="npm outdated"
Aaron Decker's avatar
Aaron Decker committed
39

40
41
42
43
44
45
# Check package versions
alias npmV="npm -v"

# List packages
alias npmL="npm list"

46
47
48
# List top-level installed packages
alias npmL0="npm ls --depth=0"

Aaron Decker's avatar
Aaron Decker committed
49
50
51
52
53
54
# Run npm start
alias npmst="npm start"

# Run npm test
alias npmt="npm test"

55
56
57
58
# Run npm scripts
alias npmR="npm run"

# Run npm publish 
Erwan ROUSSEL's avatar
Erwan ROUSSEL committed
59
60
61
62
alias npmP="npm publish"

# Run npm init
alias npmI="npm init"