2023-06-13 16:37:18 +08:00

33 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# NodeJS开发环境搭建
以下两个可以任选一个执行建议使用第二种方式可以随时切换node版本
1. 访问[NodeJS官网](https://nodejs.org/en/)首先安装node环境。
> 新版安装程序应该都会自动帮助我们设置环境变量,如果需要手动设置环境变量,如果需要手动设置,可以根据不同平台设置
> windows平台
> [安装教程](https://blog.csdn.net/u012830533/article/details/79986984)
> Linux
> [安装教程](https://www.cnblogs.com/hulian425/archive/2004/01/13/14065809.html)
2. 安装
[nvm For Linux](https://github.com/nvm-sh/nvm)
[nvm For Windows](https://github.com/coreybutler/nvm-windows)
安装好之后因为默认的npm仓库地址访问较慢一般建议使用国内镜像地址也有两种方法
1. 直接修改镜像地址,语法为:
> npm config set registry URL
URL 即为需要设置的镜像站点地址,如淘宝镜像: http://registry.npm.taobao.org
2. 使用nrm管理镜像地址该工具提供常用的镜像地址管理使用npm安装
> npm install -g nrm
全局安装nrm
安装成功后可以通过nrm查看可用的镜像地址
> nrm ls
使用指定的镜像地址
> nrm use taobao
这样就可以切换到taobao镜像需要注意的是该命令不仅可以切换npm地址如果安装了yarn(同样也是类似npm的一个js包管理工具),也会一并修改镜像地址,非常方便
**因此这里建议先使用npm命令修改镜像地址然后再安装nrm否则可能下载nvm速度会非常慢甚至无法正常下载**