首页 > 其他分享 >cypress安装时npm报错:npm WARN deprecated [email protected]: The querystring API is considered Legacy

cypress安装时npm报错:npm WARN deprecated [email protected]: The querystring API is considered Legacy

时间:2022-09-07 08:11:58浏览次数:98  
标签:npm -- cypress querystring yarn 报错 registry

处理方法一:

更新 npm 版本:npm install -g npm

使用淘宝镜像重新安装依赖:npm install --registry=https://registry.npm.taobao.org

npm install -g cnpm --registry=https://registry.npm.taobao.org
使用 cnpm 进行构建则成功:

cnpm run build:cypress

处理方法二:

使用yarn安装

1.npm install --global yarn

2.配置yarn环境变量

3.yarn add [email protected] --dev

 

标签:npm,--,cypress,querystring,yarn,报错,registry
From: https://www.cnblogs.com/51testing/p/16663972.html

相关文章