| 作用 | npm | yarn | pnpm |
|---|---|---|---|
| 安装 | npm install | yarn install | pnpm install |
| 安装的简写 | npm i | yarn add | pnpm add |
| 强制安装 | pnpm install --force | ||
| 卸载 | npm unintall | yarn remove | pnpm remove |
| 卸载简写 | npm rm | yarn rm | pnpm rm |
| 全局安装 | npm i xxx --global/-g | yarn global add xxx | pnpm add -g xxx |
| 安装包(生产模式) | npm i xxx --save/-S | yarn add xxx | pnpm add xxx |
| 开发模式安装包 | npm i xxx --save-dev/-D | yarn add xxx -dev/-D | pnpm add -D xxx |
| 检查更新 | npm outdated | ||
| 更新 | npm update | yarn upgrade | pnpm update |
| 全局更新 | npm update -g | yarn global upgrade | pnpm update -g |
| 运行 | npm run xxx | yarn run | pnpm run xxx |
| 清除缓存 | npm cache clean | yarn cache clean | |
| 动态包执行 | npx xxx | yarn dlx xxx | pnpm dlx xxx |
| 查看全局安装的包 | npm list -g --depth 0 | yarn global list | pnpm list -g |
【备忘】npm yarn pnpm 命令对比
FTLIKON2024-04-13 14:44
相关推荐
十一.36618 分钟前
79-82 call和apply,arguments,Date对象,Math霍格沃兹测试开发学社-小明23 分钟前
测试左移2.0:在开发周期前端筑起质量防线用户990450177800926 分钟前
若依工作流-包含网关by__csdn36 分钟前
Vue 中计算属性、监听属性与函数方法的区别详解on_pluto_1 小时前
【debug】关于如何让电脑里面的两个cuda共存r***F2621 小时前
Go-Gin Web 框架完整教程chilavert3181 小时前
技术演进中的开发沉思-220 Ajax:XMLHttpRequest 对象IT_陈寒2 小时前
Python开发者必看:5个被低估但能提升200%编码效率的冷门库实战g***78912 小时前
鸿蒙NEXT(五):鸿蒙版React Native架构浅析q***71852 小时前
Webpack、Vite区别知多少?