fnm安装配置手册

安装

参考fnm的Github仓库MarkDown

基于Scoop安装:

1.如果没有Scoop环境先安装Scoop:

1
2
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression

2.安装FNM:

1
scoop install fnm

配置

$profile 文件中添加以下命令,使 fnm 在 PowerShell 中生效:

1
fnm env --use-on-cd | Out-String | Invoke-Expression

统一将fnm的所有Node.js设置为国内镜像源

阿里云源:

1
[Environment]::SetEnvironmentVariable('FNM_NODE_DIST_MIRROR', 'https://mirrors.aliyun.com/nodejs-release/', 'User')

重启终端使环境变量生效。

安装 Node.js

安装最新版本的 Node.js:

1
fnm install --latest

安装指定版本的 Node.js:

1
fnm install <version>

卸载 Node.js

卸载指定版本的 Node.js:

1
fnm uninstall <version>

查看版本

查看当前安装的版本:

1
fnm ls

查看可安装的版本:

1
fnm ls-remote

使用某个版本

使用指定版本的 Node.js:

1
fnm use <version>

添加到 Path 环境变量【Windows】

将当前使用的版本添加到 Path 环境变量:

1
[Environment]::SetEnvironmentVariable('Path', [Environment]::GetEnvironmentVariable('Path', 'User') + ";$env:APPDATA\fnm\aliases\default", 'User')