首先我先在命令窗口执行了两个命令
npm init
npm install koa这是我的helloword.js文件的代码
const Koa = require('koa');
const app = new Koa();app.use(async(ctx)=> {
  ctx.body = 'hello koa2'
});app.listen(3000);
console.log('[demo] start-quick is starting at port 3000');接着我执行 node helloword.js 的时候报错