1.0.1 • Published 5 years ago

@lambda-middleware/do-not-wait v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@lambda-middleware/do-not-wait

npm version downloads open issues debug build status codecov dependency status devDependency status

AWS lambda middleware to prevent Lambda from timing out because of processes running after returning a value.

Lambda middleware

This middleware is part of the lambda middleware series. It can be used independently.

Usage

import { doNotWait } from "@lambda-middleware/do-not-wait";

// This is your AWS handler
async function helloWorld() {
  return {
    statusCode: 200,
    body: "",
  };
}

// Wrap the handler with the middleware
export const handler = doNotWait()(helloWorld);