镜像源
#中国科大
https://mirrors.ustc.edu.cn/help/index.html
#清华
https://mirrors.tuna.tsinghua.edu.cn/
nvm 管理node版本
安装
mac安装
brew install nvm
其他方式安装
https://github.com/nvm-sh/nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
nvm使用
查看所有可安装 Node 版本号
nvm ls-remote
nvm ls-remote |grep v17
安装最新版本
nvm install node
安装指定版本
nvm install v16.14.0
设置nvm镜像
nvm node_mirror: https://registry.npmmirror.com/mirrors/node/
nvm npm_mirror: https://registry.npmmirror.com/mirrors/npm/
查看已安装的所有版本
nvm ls
切换node版本
nvm use 10.16.2
nvm use node
开启nvm,关闭nvm
开启nvm,并设置使用最新node 版本
nvm on
关闭nvm 此时 node 命令不可使用,如果再执行nvm use xxx 会重新开起
nvm off
设置下载代理
设置代理, 不加可选参数url,显示当前代理 将url设置为none则移除代理
nvm proxy [url]
设置不同版本node存储目录,不写path查看当前node存储目录
nvm root [path]
n 管理 npm
npm install -g n
查看最新版
n --stable
查看 版本
npm -v
node -v
安装最新版
n stable
查看当前版
node -v
npm -v
或
npm install npm@latest -g
npm 管理
npm 镜像
npm config set registry https://registry.npmmirror.com
npm config set registry https://registry.npmmirror.com
安装模块
安装express模块
npm install express
npm install express@11.0.0
npm install express
npm install express -S
npm install express -D
全局安装模块
npm install -g express
显示模块详情
npm show express
已安装模块
npm list
升级当前目录下的项目的所有模块
npm update
升级当前目录下的项目的指定模块
npm update express
升级全局安装的express模块
npm update -g express
升级package.json中依赖包版本
方式一 升级到最新版本
npm install --force
或
npm install
方式二 使用第三方
npm install -g npm-check-updates
ncu
ncu -u
查看可更新模块
npm outdated
删除指定的模块
npm uninstall express
删除全局模块
npm uninstall -g express
清除缓存
npm cache clean --force
npm cache clean -f
验证缓存
npm cache verify
yarn2
查看版本
yarn --version
输出
1.22.17
安装yarn2
设置
yarn set version berry
查看版本
yarn --version
输出
1.22.17
升级
yarn upgrade
配置yarn2 设置 yarn镜像库
yarn config set npmRegistryServer https://registry.npmmirror.com
yarn 1 镜像
yarn config set registry https://registry.npmmirror.com
yarn config set registry https://registry.npmmirror.com
更多 yarn2 请看 https://segmentfault.com/a/1190000040520326
|