0.0.4 • Published 8 years ago

lambdafy v0.0.4

Weekly downloads
13
License
SEE LICENSE IN LI...
Repository
github
Last release
8 years ago

Lambdafy

Turns Express into an AWS Lambda web framework.

import Express from 'express'
import Lambdafy from 'lambdafy'

var app = Lambdafy.fromExpress(express())
app.get('/', (req, res) => { res.status(200).send()})

exports.handler = app.handleRequest

Installation

$ npm install lambdafy --save

Features

  • still heavily under construction - assume nothing works
  • source code is a mess

How does it work

Lambdafy overrides Express to bypass Node.Http and pillarjs/send to handle request/response. Instead, it creates a thin adapter that convers to/from API Gateway Proxy Integration request/response objects.

License

All rights reserved.

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago