node版本18怎么安装对应的python node-v安装_vue.js

node.js 安装

1、安装 nodejs

node.js 官网:Node.js (nodejs.org)

node版本18怎么安装对应的python node-v安装_前端框架_02

选择 长期维护版本

node版本18怎么安装对应的python node-v安装_vue.js_03

双击下载好的文件

node版本18怎么安装对应的python node-v安装_npm_04

点击 Next

node版本18怎么安装对应的python node-v安装_前端框架_05

同意协议 点击 Next

node版本18怎么安装对应的python node-v安装_vue.js_06

更改安装路径

node版本18怎么安装对应的python node-v安装_npm_07

点击 Next

node版本18怎么安装对应的python node-v安装_node.js_08

点击 Next

node版本18怎么安装对应的python node-v安装_node.js_09

点击 Install

node版本18怎么安装对应的python node-v安装_npm_10

点击 Finish 完成安装

node版本18怎么安装对应的python node-v安装_npm_11

安装完后的目录

查看是否安装成功

node版本18怎么安装对应的python node-v安装_node.js_12

C:\Users\34141>node -v
v16.15.0

node版本18怎么安装对应的python node-v安装_前端框架_13

C:\Users\34141>npm -v
8.5.5

A、node -v 查看 node 版本

B、npm -v 查看 npm 版本

2、配置环境

说明:在执行类似:npm install express [-g] (后面的可选参数-g,g代表global全局安装的意思)的安装语句时,会将安装的模块安装到【C:\Users\用户名\AppData\Roaming\npm】路径中,占C盘空间。这里的环境配置主要配置的是npm安装的全局模块所在的路径,以及缓存cache的路径。之所以要配置,主要是为了改变安装NodeJS依赖的下载位置,方便日后管理,以及配置缓存Cache的路径。
我希望将全模块所在路径和缓存路径放在我node.js安装的文件夹中,则在我安装的文件夹【D:\nodejs】下创建两个文件夹【node_global】及【node_cache】如下图:

node版本18怎么安装对应的python node-v安装_node.js_14

创建完两个空文件夹之后,打开cmd命令窗口,输入

node版本18怎么安装对应的python node-v安装_vue.js_15

npm config set prefix "D:\nodejs\node_global"
npm config set cache "D:\nodejs\node_cache"

接下来设置环境变量,“我的电脑” - 右键 - “属性” - “高级系统设置” - “高级” - “环境变量”

node版本18怎么安装对应的python node-v安装_前端框架_16

点击 高级系统设置

node版本18怎么安装对应的python node-v安装_npm_17

点击 环境变量

进入环境变量对话框,在【系统变量】下新建【NODE_PATH】,输入【D:\nodejs\node_global\node_modules】

node版本18怎么安装对应的python node-v安装_npm_18

点击 新建

node版本18怎么安装对应的python node-v安装_node.js_19

点击 确认,完成配置

将【用户变量】下的【Path】添加【D:\nodejs\node_global】

node版本18怎么安装对应的python node-v安装_vue.js_20

点击【Path】,再点击 【编辑】

node版本18怎么安装对应的python node-v安装_node.js_21

点击【新建】,填写【D:\nodejs\node_global】,点击【确认】。完成环境的配置

3、更改下载镜像

  • 查看当前npm镜像地址
    命令:
npm config get registry

示例:

node版本18怎么安装对应的python node-v安装_前端_22

C:\Users\34141>npm config get registry
https://registry.npmjs.org/
  • 替换npm镜像源【建议】
    命令:
npm config set registry https://registry.npm.taobao.org

示例:

node版本18怎么安装对应的python node-v安装_前端_23

C:\Users\34141>npm config set registry https://registry.npm.taobao.org

C:\Users\34141>npm config get registry
https://registry.npm.taobao.org/
  • 或者下载cnpm
    命令:
npm install -g cnpm --registry=https://registry.npm.taobao.org