执行cnpm install 时报错:randomUUID is not a function

发布时间 2023-06-20 15:31:40作者: _whys

啊,熟悉的气息!

 

TypeError: randomUUID is not a function

搜了一下得知:

npm.taobao.org 和 registry.npm.taobao.org 将在 2022.06.30 号正式下线和停止 DNS 解析。

新域名切换规则:

  • npm.taobao.org => npmmirror.com
  • registry.npm.taobao.org => registry.npmmirror.com

 

解决方案

// 删除卸载原cnpm
npm uninstall -g cnpm

// 安装指定版本的cnpm
npm install -g cnpm@7.1.1 --registry=https://registry.npmmirror.com

后面 cnpm i 就可以了