4.0.0 • Published 7 years ago

lambda-compose v4.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

lambda-compose

lambda-compose adds middleware and promise support to your lambda functions.

installation

npm install lambda-compose

example

  const compose = require('lambda-compose')

  // example using callback
  export.myLambdaFunction = compose(
    (event, context, callback, next) => {
      // jump to next middleware:
      next()
    },
    (event, context, callback) => {
      // run the callback of the lambda function
      callback(null, { statusCode: 200, body: 'ok' })
    })

  // example using promises
  export.mySecondLambdaFunction = compose(
    (event, context, callback, next) => {
      // jump to next middleware:
      next()
    },
    (event, context) => Promise.resolve({ statusCode: 200, body: 'ok' })
  )

License

Copyright (c) 2017 Simon Kusterer Licensed under the MIT license.

4.0.0

7 years ago

3.0.0

7 years ago

2.0.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago