npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kompose-lambda

v0.2.3

Published

Compose Promise chain middleware like Koa for AWS Lambda + API Gateway

Downloads

13

Readme

Kompose Lambda

Build Status

Write AWS Lambda handlers in a Koa way, a chain of middleware functions that can be awaited.

Uses koa-compose and is heavily inspired by Koa. In fact, this wouldn't be possible if it weren't for these two great projects.

For it to work, your middleware functions must be async functions or return a Promise

Example:

const KomposeLambda = require('kompose-lambda')

const chain = new KomposeLambda()

// Add middleware to the chain
chain.use(async (ctx, next) => {
  const body = ctx.event.body
  ctx.result.body = {first: `Hello, ${body.name}'s `}
  await next()
  ctx.result.body.third = '!'
})

chain.use(ctx => {
  ctx.result.body.second = 'World'
})

// Register handler to be called after all middleware
// Useful to handle default responses
chain.final(ctx => {
  ctx.result.statusCode = 200
  ctx.result.headers['Content-Type'] = 'text/plain'
  ctx.callback(null, ctx.result)
})

// Register an error handler to catch any errors
// Note that the middleware must be async function or
// return a promise
chain.error((err, ctx) => {
  console.error(err)

  ctx.result.statusCode = 500
  ctx.result.body = ''
  ctx.callback(null, ctx.result)
})

// Get the handler
module.exports.myHandler = chain.getHandler()

Second example returning in final handler (Node.js 8.10):

const KomposeLambda = require('kompose-lambda')

const chain = new KomposeLambda()

// It is also possible to add an error handler first so you can build error responses
chain.use(async (ctx, next) => {
  try {
    await next()
  } catch(e) {
    ctx.result.statusCode = 500
    ctxt.result.body = e.name
  }
})

// Add middleware to the chain
chain.use(async (ctx, next) => {
  const body = ctx.event.body
  ctx.result.body = {first: `Hello, ${body.name}'s `}
  await next()
  ctx.result.body.third = '!'
})

chain.use(ctx => {
  ctx.result.body.second = 'World'
})

// Register handler to be called after all middleware
// Useful to handle default responses
chain.final(ctx => {
  ctx.result.statusCode = ctx.result.statusCode || 200
  ctx.result.headers['Content-Type'] = 'text/plain'
  ctx.result.body = JSON.stringify(ctx.result.body)
  return ctx.result
})

// Get the handler
module.exports.myHandler = chain.getHandler()

Installation

yarn add kompose-lambda"

or

npm install --save kompose-lambda"

API

Constructor

const options = {
  createContext: (event, context, callback) => {}
}

const chain = new KomposeLambda(options)

You can provide a createContext function as the only option. This allows you to enhance the context object with whatever you would like. For example, you could wrap the event with some utilities. Currently it only supports AWS Lambda's handler signature. If no options are provided, it uses the default createContext function, which generates a context object with the following shape:

const defaultContext = {
  event: {},
  context: {},
  callback: () => {},
  result: {
    statusCode: null,
    body: '',
    headers: {},
    isBase64Encoded: false
  },
  customContext: {}
}

The default createContext function just forwards AWS Lambda's arguments to the context object:

function createContext (event, context, callback) {
  const ctx = Object.assign({}, defaultContext)

  ctx.event = event
  ctx.context = context
  ctx.callback = callback

  return ctx
}

chain.use(function)

Adds a middleware function to the chain, which will be called with ctx and next arguments. Calling next() is not required. You can await the next() call to run any code after the next middleware.

chain.final(function)

Adds a final function to the chain which is called only with the ctx argument. It is useful to handle default responses, or to handle whatever you want before calling the response callback. It is also possible to return a promise or return in an async function.

chain.error(function)

Adds an error handler to the chain to . If your middleware functions are all async or return a Promise, you can catch any errors in the chain, considering you have not handled the error before. Receives err and ctx arguments. If you return instead of calling the callback argument from ctx, you are returning an error to AWS.

Contributing

If you have an issue, question or bug to report, please feel fre to open an issue. I'll try my best to answer or fix any issue. Feel free to open a PR if you want.