0.6.0 • Published 4 years ago

koa-serverless v0.6.0

Weekly downloads
112
License
MIT
Repository
github
Last release
4 years ago

koa-serverless

A koajs bundle including:

Make koajs applications with minimal boilerplate.

Install

npm install koa-serverless

Example

// drop in replacement for `koa`.
var App = require("koa-serverless");
var app = new App();This will give you the basic mechanisms to

// add your own middleware
var serve = require("koa-static");
app.use(serve("./public"));

// run program as daemon or export handler for lambda.
exports.handler = app.run(/* isLambdaOverride */);
0.6.0

4 years ago

0.5.0

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago