21. 백엔드 프로그래밍 : Node.js-Koa
Koa Koa는 Node.js의 Express를 개발한 팀이 만든 프레임워크 미들웨어 기능만 갖추고 있다 Express보다 훨씬 가볍다 async/await 문법을 정식으로 지원한다 서버 띄우기 const Koa = require('koa'); const app = new Koa(); app.use(ctx=>{ ctx.body= 'hello world'; }); app.listen(4000,()=>{ console.log('Listening to port 4000'); }); app.use app.use 함수는 미들웨어 함수를 애플리케이션에 등록하게 해준다 미들웨어 함수는 다음과 같은 구조로 이루어져있다 (ctx, next)=>{ } 보면 알 수 있듯이 Koa의..