运行Node.js 时报如下错误ntaxError: Cannot use import statement outside a module

在命令行运行npx babel-node .\index.js时报如下错误:

运行Node.js 时报如下错误ntaxError: Cannot use import statement outside a module_第1张图片
解决:在package.json下加入"type": “module”
运行Node.js 时报如下错误ntaxError: Cannot use import statement outside a module_第2张图片
成功截图:
在这里插入图片描述

你可能感兴趣的:(node.js)