npm

前端
npm
作者

yangjh

发布日期

October 28, 2021

NPM是Node.js的包管理工具,它允许开发人员轻松安装、更新和管理依赖项和模块。

常用 NPM 命令

命令 功能
npm install -g xxx 全局安装包
npm install xxx 在当前目录安装包
npm install xxx@x.x.x 安装指定版本的包
npm uninstall -g xxx 全局卸载包
npm uninstall xxx 在当前目录卸载包
npm ls 查看当前项目安装的包
npm list -g --depth 0 查看所有全局安装包
npm update xxx 更新指定的包

参考文献

  1. https://nodejs.org/
回到顶部