js代码运行报错Warning:To load an ES module, set "type":"module"in the package.json or use the .mjs
报错信息
vscode运行js代码报错:(node:20452) Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
# 查看报错信息
Warning: To load an ES module, set "type": "module" in the package.json or use the .mjs extension.
警告:加载ES模块时,在package.json包中设置“ type”:“ module”或使用.mjs扩展名。
解决方案
1、安装新版node.js
2、使用npm init -y初始化项目,生成一个pakeage.json文件
3、在pakeage.json文件中添加"type": "module"
同类型报错的情况,都可以使用该方案解决!
执行结果
总结
到此这篇关于js代码运行报错Warning:To load an ES module, set "type":"module"in the package.json or use the .mjs的文章就介绍到这了,更多相关js代码运行Warning To load an ES module内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
js正则表达式最长匹配(贪婪匹配)和最短匹配(懒惰匹配)用法分析
这篇文章主要介绍了js正则表达式最长匹配(贪婪匹配)和最短匹配(懒惰匹配)用法,结合实例形式分析了贪婪匹配与懒惰匹配的具体用法与相关注意事项,需要的朋友可以参考下2016-12-12cookie在javascript中的使用技巧以及隐私在服务器端的设置
cookie在javascript中的使用技巧,需要的朋友可以参考下2012-12-12
最新评论