적용전
app.use((ctx, next) => {
console.log(ctx);
console.log(1);
next();
});
적용후
app.use(async (ctx, next) => {
console.log(ctx);
console.log(1);
await next();
console.log('END');
});
'Web 개발 > Node' 카테고리의 다른 글
[Node] koa를 이용해 RESTApi 만들기 (+Router 모듈화) 예제 코드 (0) | 2020.02.16 |
---|---|
[Node] koa-router 사용방법 parameter, query (예제코드) (0) | 2020.02.16 |
[Node] nodemon을 이용해 서버 자동으로 재시작 (0) | 2020.02.16 |
[Node] Koa 사용하기 (middleware, ctx, next, Promise) (0) | 2020.02.16 |
[Node] 프로젝트 생성 (esLint, prettierrc) (0) | 2020.02.16 |