Warning: To load an ES module, set “type“: “module“ in the package.json or use the .mjs extension.

问题

在demo01.js文件中导入第三方库报错如下:
Warning: To load an ES module, set “type“: “module“ in the package.json or use the .mjs extension._第1张图片

解决

先在当前目录下终端运行命令

npm init -y

 然后在生成的package.json中添加

  "type": "module"

Warning: To load an ES module, set “type“: “module“ in the package.json or use the .mjs extension._第2张图片

再次运行 node demo01.js  文件正常执行。 

参考

Node运行js出现 Cannot use import statement outside a module的问题(亲测有用)_javascript_爱在冰川了-华为云开发者联盟

你可能感兴趣的:(json,java,开发语言,no,node)