为了避免nodejs的版本混乱,采用nvm来管理nodejs的版本
安装配置nvm
下载并安装
打开cmd 配置npm及node镜像地址
nvm node_mirror https://npmmirror.com/mirrors/node/
nvm node_mirror https://npmmirror.com/mirrors/node/
安装nodejs
nvm install 16
nvm use 16
使用-g选项全局安装
npm install -g –unsafe-perm @frangoteam/fuxa
fuxa
打开浏览器 访问http://localhost:1881
如果执行fuxa报错
PS C:\Users\Administrator> fuxa
fuxa : 无法加载文件 C:\Program Files\nodejs\fuxa.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micros
oft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ fuxa
+ ~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
方法一:临时更改执行策略(推荐)
以管理员身份打开PowerShell。
运行以下命令,将执行策略临时设置为允许运行脚本:
powershell
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force
此命令仅对当前PowerShell会话生效,关闭后自动恢复默认策略,安全性高。
重新运行 fuxa 命令。
方法二:永久更改执行策略
以管理员身份打开PowerShell。
运行以下命令永久允许运行本地脚本:
powershell
Set-ExecutionPolicy RemoteSigned -Force
注意:永久更改策略可能降低系统安全性,请确保仅运行可信脚本。