首页 > 其他分享 >npm WARN deprecated [email protected]: core-js@<3.23.3 is no longer maintained and not recommended f

npm WARN deprecated [email protected]: core-js@<3.23.3 is no longer maintained and not recommended f

时间:2023-03-28 19:47:38浏览次数:37  
标签:npm core 12 js WARN 2.6

npm WARN deprecated [email protected]: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection
in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual v
ersion of core-js.

 

 

原因:版本太老,不在维护

解决:升级版本,终端输入命令 npm i core-js

 

标签:npm,core,12,js,WARN,2.6
From: https://www.cnblogs.com/beichengshiqiao/p/17266423.html

相关文章

  • js加解密入门
    首先,让我们简单介绍一下百度公司的文心一言。文心一言是百度公司推出的一项文本生成工具,它可以根据给定的主题或关键词生成一句简短而富有启发性的文字。在我们的加密和解密......
  • JS实现日期加上N天后得到新的日期
    直接上代码://日期加上天数得到新的日期//dateTemp需要参加计算的日期,days要添加的天数,返回新的日期,日期格式:YYYY-MM-DDfunctiongetNewDay(dateTemp,days){var......
  • JSON 数组对象获取 其中某个属性的值
    importcn.hutool.json.JSONArray;importcn.hutool.json.JSONObject;importcn.hutool.json.JSONUtil;publicstaticvoidmain(String[]args){Strings......
  • CommonJS和ES6中的导入导出使用
    1.CommonJS使用exportsconstname='张三'functionFn(){return1}//导出单个数据exports.name=nameexports.Fn=Fn//导入数据//可使用解构cons......
  • js输入输出及字面量
    js输出语法 下面是script的代码这是语法一的输出样式  这是语法二的输出样式,会在页面上方弹出警示框  这是语法三的输出样式  这是js的输入输出顺序  ......
  • js树形控件—zTree使用
    https://blog.csdn.net/qq_35934094/article/details/80852989https://www.cnblogs.com/leechenxiang/p/5952959.htmlhttps://www.jianshu.com/p/99d24aab74a5详见官网:h......
  • 第六篇 TypeScript 【 typeScript 编译上下文 tsconfig.json 】
    typeScript编译上下文tsconfig.json的作用1、用于标识TypeScript项目的根路径2、用于配置TypeScript编译器3、用于指定编译的文件tsconfig.json重要字段1......
  • webpack.config.js和vue.config.js的区别
    webpack.config.js是webpack的配置文件,所有使用webpack作为打包工具的项目都可以使用,vue的项目可以使用,react的项目也可以使用。vue.config.js是vue项目的配置文件,专用于v......
  • javascript 使用json 将js 数据转换成json
     如果是字符串格式的话接的先解析成jsonvarjsonList=pm.response.text();varjson=JSON.parse(jsonList);console.log(json);console.log(json.has_more);varres={"......
  • js如何打印object对象
     js调试中经常会碰到输出的内容是对象而无法打印的时候,光靠alert只能打印出object标示,却不能打印出来里面的内容,甚是不方便,于是各方面整理总结了如下一个函数,能够将数组或......