TIL the -s in npm install means silent install
POSTED ON:
TAGS: npm
npm install <package> -s
What does the -s
mean?
It's short for --silent
.
-s
appears to silence the output of the command (at least in npm v7.0.15).
In other words, including -s (or --silent) in your npm install command means that it will have no output (only a newline)
Related TILs
Tagged: npm