aws-lambda-express
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

aws-lambda-express

Express for AWS Lambda. Based on Roman Kinyakin's blog post: https://viblo.asia/p/expressjs-style-flow-for-aws-lambda-vyDZOXa9lwj. Because aws-serverless-express wasn't working for my purposes.

Installation

npm install aws-lambda-express --save

Usage

Usage is similar to the app.use() pattern you may be used to with express, just a little bit more verbose:

import { Use } from "aws-lambda-express"

module.exports.testHttp = Use(
  (req, res, next) => {
    req.middlewareOneExecuted = true
    next()
  },
  (req, res) => {
    res.send({
      m1: req.middlewareOneExecuted,
      m2: true,
    })
  }
)

Example

The example uses ts-node and serverless-offline. Clone this repo. Then from \example folder, run the example from the command line with:

npm run start

Then interact with the endpoint at http://localhost:3000.

For example, hit http://localhost:3000/hello

Readme

Keywords

none

Package Sidebar

Install

npm i aws-lambda-express

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

8.22 kB

Total Files

9

Last publish

Collaborators

  • lcharold