Yuying Wu

Light
Dark

Koa.js

June 23, 2019

Tags:note

概念

中间件 middleware

app.use(async (ctx, next) => {
// ctx, context, 上下文
console.log(`${ctx.method} ${ctx.url} ${new Date()}`);
// next, promise,下一步
return await next();
});

调试

VSCode

VS Code侧边栏的“调试”,在代码中设置断点。

Chrome

node --inspect server.js
  1. chrome打开chrome://inspect
  2. Remote Target 选择对应的页面
  3. Source - add folder to workspace,在server.js中添加断点

附录

评论区


Yuying Wu
Yuying Wu 个人博客,文字、代码、照片,记录工作和生活.
你可以在这里关注我:RSSGithub