npm (Node Packaged Modules) is node's official package manager. You can also see all the versions of node and corresponding npm here.
Overview
npm CLI documentation
Acronym
--global
缩写为 -g
,表示安装之后的包将位于系统预设的全局目录之下。
--save
缩写为 -S
,表示安 装的包将写入 package.json
里面的 dependencies
。