shirbr510 / koa-hello-world

a basic project about using koa (thoughts of an express developer)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

koa-hello-world

after years of working with express, I've tried to experiment with koa a little.

main assumptions I'm trying to prove:

  • moving from express to koa is simple
  • koa provides some sort of routing solution similar to express
  • koa can work with promises OOTB
  • simplicity of error handlers

Conclusions regarding initial assumptions:

  • moving from express to koa is simple

the api is almost identical and very easy to adjust to ctx is basically req & res together (and many many more)

  • koa provides some sort of routing solution similar to express

not like express, koa's router is a seperate package (koa-router), but the integration is quite similar. due to the simplicity of the API and the "allowed methods" option, you are getting OOTB status code errors creating infinitely nested routes is no issue at all

  • koa can work with promises OOTB

even if we throw errors, koa's api allows us to work with promises with quite an ease, no mumbo jumbo wrappers liek we used to do in express

  • simplicity of error handlers there are 2 ways to address this:
  • imperatively: api is identical to express (.statusCode(400))
  • decleratively: koa provides a lot of declerative error handling without making things complicated. (e.g: allowed methods)

About

a basic project about using koa (thoughts of an express developer)

License:GNU General Public License v3.0


Languages

Language:JavaScript 100.0%