问题 This is my main.js file: import Koa from "koa"; const app = new Koa(); app.use(async ctx => ctx.body = "Hello, World!"); app.listen(3000); This is my package.json file: { "type": "module", "name": "koa-sandbox", "version": "1.0.0", "description": "", "main": "./src/main.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node --experimental-modules ./src/main.js" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "koa": "^2.7.0" } } It works