包管理管理工具命令

72 阅读1分钟
// 登录
npm login
// 发布
npm publish
// 删除
npm unpublish
// 过期
npm deprecate
// 重新安装新包
npm rebuild      yarn install --force
// 清除缓存
npm cache clean  yarn cache clean  pnpm store prune
// 重新安装
rm -rf node_modules && npm install    yarn upgrade
// 获取pnpm 仓库位置
pnpm store path