前端开发环境搭建
作者:互联网
1 nvm(node version manager)的安装和使用(管理node版本)
下载地址:https://github.com/coreybutler/nvm-windows/releases 选择想要的版本,点击nvm-setup.zip可直接下载
安装:安装路径需要全英文,并选择nodejs的安装路径
安装完毕之后 nvm -v 可查看版本
2 下载node
进入nvm安装目录,打开settings.txt,粘贴以下代码,替换node下载源为国内镜像
node_mirror: https://npm.taobao.org/mirrors/node/
npm_mirror: https://npm.taobao.org/mirrors/npm/
下载node的常用命令:
#查看电脑存在的node版本
nvm ls # 下载node
nvm install xx.xx.x (xx.xx.x为具体的node版本号) # 设定当前的node版本
nvm use xx.xx.x # 查看当前的node版本
node -v # 查看npm版本
npm -v # 删除node版本
nvm uninstall xx.xx.x (如果删除了nvm设定的node版本,则需重新设定。)
3 切换npm镜像源
#获取npm下载源 npm config get registry #淘宝镜像 npm config set registry https://registry.npm.taobao.org
4 使用npm安装@vue/cli脚手架
# 下载
npm install -g @vue/cli
# 查看版本
vue -V
vue --version
标签:node,npm,环境,xx,版本,nvm,前端开发,下载,搭建 来源: https://www.cnblogs.com/skiinaurora/p/16609053.html