本文介绍了npm
, cnpm
, npx
, yarn
, pnpm
等常见的包管理器和其基本命令
npm
安装
- 安装
Node.js
自带工具,无需手动安装
命令
npm install [包名](@[版本])
:安装指定包并添加到package.json
中的 依赖项(dependencies)npm install
:安装所有package.json
中的依赖项npm install --save-dev
:安装包并添加到package.json
中的 开发依赖项(devDependencies)
npm uninstall [包名]
:卸载指定包npm run [命令名]
:执行package.json
中定义的命令npm config set registry https://registry.npmmirror.com
:切换 淘宝源
约 1420 字...