Node下载:
英文网址: nodejs.org/en/download
中文网址: nodejs.cn/download/
因为电脑是window10的,所以我选择的是(window安装包).msi的64位,直接点击下载,如果是其他系统找对应的下载安装就行了
下载完了之后找到环境变量查看全局配置,没有配置自己可以将路径复制,进行配置
node -v 查看安装版本
原淘宝 npm 域名即将停止解析!使用老域名的请尽快更新到新域名
域名切换规则:
https://npm.taobao.org => https://npmmirror.com
https://registry.npm.taobao.org=>https://registry.npmmirror.com
NPM设置淘宝镜像
查询当前配置的镜像
npm get registry
2.设置成淘宝镜像 (旧)
npm config set registry https://registry.npm.taobao.org/
2.更换国内源 (新)
npm config set registry https://registry.npmmirror.com
3.恢复官方源
npm config set registry https://registry.npmjs.org/
查看缓存路径:npm config get cache
清除缓存:npm cache clean --force
注:这将清除npm缓存目录中的所有文件。需要注意的是,这可能会导致重新下载项目的依赖,因此在执行此命令之前,请确保重要的依赖您已备份了。
超人不会飞,蓝心羽
NPM指令下载安装全局Yarn:
npm install -g yarn
Yarn 设置淘宝镜像
1.查询当前配置的镜像
yarn config get registry
2.设置成淘宝镜像(旧)
yarn config set registry http://registry.npm.taobao.org/
2.更换国内源 (新)
yarn config set registry https://registry.npmmirror.com
3.恢复官方源
yarn config set registry http://registry.npmjs.org/
4.默认
yarn config set registry https://registry.yarnpkg.com
查看缓存列表:yarn cache list
查看缓存路径:yarn cache dir
清除缓存:yarn cache clean
注:这将清除yarn缓存目录中的所有文件。和清除npm缓存一样,在执行此命令之前,请确保重要的依赖您已备份了。
还没有评论,来说两句吧...