Koa is a web framework which aims to be a smaller, more expressive, and more robust foundation for web applications and APIs.
I'm wrapping my head around the new ecma6 generators and yield-operator in javascript, specifically in the context of koa. Consider …
javascript asynchronous generator koaI'm building an API with Koa. I have all my routes in place with koa-router. Each route uses a controller …
javascript error-handling koaI have this error XMLHttpRequest cannot load http://127.0.0.1:1337/. Response to preflight request doesn't pass access control check: The value of …
javascript jquery cors koaI'm using koa and passport trying to implement middleware to prevent access to URIs when not authenticated. var koa = require(…
authentication routing passport.js koaI'd like to encrypt my Koa server with SSL. It seems simple enough with a regular httpServer, but I'm not …
node.js https koaI have a Koa app I just started and I need to test something that grabs data from a config …
javascript node.js unit-testing tdd koaI am trying to set a cookie which has my auth token in it. I can see it being returned …
javascript node.js reactjs cookies koaI have existing code which implements an express middleware. How can I use this middleware in a Koa application? When …
node.js express koa