1.查看版本

npm -v
2.安装模块

a.全局安装

npm install <模块名> -g

b.本地安装

npm install <模块名>

c.在项目中安装保存到package.json中

npm install <模块名> --save-dev

3.查看安装信息

a.查看所有安装模块

        npm list -g

b.查看某个模块

        npm list <模块名>

4.卸载模块

npm uninstall <模块名>
5.更新模块

npm update <模块名>
6.搜索模块

npm search <模块名>
7.清空本地缓存

npm cache clear