next express js web framework 1장. Koa 를 사용하여 웹서버 만들기Node.js 에서 가장 인기있던 웹 프레임워크인 Express.js 의 개발팀이, Koa 라는 웹프레임워크를 새로 만들었습니다. 기존의 Express 의 경우엔 오픈소스의 소유권이 IBM 계열사인 StrongLoop 으로 이전이 되었으며, 유지보수는 되고있긴 하지만, 장기적으로 보면 이로 인하여 인지도를 잃을 확률이 높습니다. 물론, 워낙 유명한 라이브러리이기 때문에, 지금 매우 많은 프로젝트에서 Express 를 사용하고 있긴 하지만, Koa 로 마이그레이션 하는 프로젝트도 늘어나는 추세입니다.https://backend-intro.vlpt.us/1/koajs/koaExpressive HTTP middleware framework for node.js to make web applications and APIs more enjoyable to write. Koa's middleware stack flows in a stack-like manner, allowing you to perform actions downstream then filter and manipulate the response upstream. Only methods that are common to nearly all HTTP servers are integrated directly into Koa's small ~570 SLOC codebase.https://github.com/koajs/koa