What is npm
npm 全称是Node Package Manager,是随同Node.Js一起安装的包管理和分发工具,它能让开发者更方便下载、安装、上传及管理已经安装过的包。
npm设置淘宝镜像
npm config set registry https://registry.npm.taobao.org
查看npm镜像设置
npm config get registry
还原npm源
npm config set registry https://registry.npmjs.org/
全局安装
npm install <name> -g
局部安装(并将信息写入package.json)
npm install <name> --save
安装cnpm淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
查看cnpm镜像设置
cnpm config get registry
清除npm缓存
npm cache clean --force
卸载模块
npm uninstall
列出当前安装了的所有的包
npm ls
查看当前包的安装路径
npm root
查看全局包的安装路径
npm root -g