0.6.0 • Published 3 years ago

koa-serverless v0.6.0

Weekly downloads
112
License
MIT
Repository
github
Last release
3 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

3 years ago

0.5.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.0

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago