3.0.0 • Published 1 year ago

lambda-envelope v3.0.0

Weekly downloads
543
License
MIT
Repository
github
Last release
1 year ago

lambda-envelope

Build Status Coverage Status NPM version Dependencies Status DevDependencies Status

Envelope for AWS Lambda responses that supports raw invocation response parsing.

Installation

$ npm install lambda-envelope

Usage

Response

AWS Lambda does not provide a way to separate client and server errors, as errors can't be extended with custom fields. Response class contains methods needed by AWS Lambda to correctly serialize custom response or error. Successful results and client errors should be returned using success callback. Errors that should be treated as server errors and, as a result, be picked up by Amazon CloudWatch, must be returned using error callback.

constructor(options)

Constructor takes options object with optional parameters:

Example
const Response = require('lambda-envelope').Response;

module.exports.handler = function(event, context, callback) {
  const response = new Response({
    statusCode: 200,
    body: {
      data: 'some data'
    }
  });

  callback(null, response);
}

ResponseBuilder

ResponseBuilder is a factory class that helps to deal with large response size, since AWS Lambda has a 6 MB max response size (256 KB in the asynchronous mode). It tries to compress the response when it exceeds pre-defined threshold and uploads compressed response to S3 bucket when compression does not bring response size below threshold (returning pre-signed URL). Additionally, ResponseBuilder class contains helper method to parse raw AWS Lambda response.

constructor(options)

Constructor takes options object with the following parameters:

Example
const AWS = require('aws-sdk');
const ResponseBuilder = require('lambda-envelope').ResponseBuilder;

const builder = new ResponseBuilder({
  bucket: 'bucket-for-responses',
  s3client: new AWS.S3({ maxRetries: 5 }),
  threshold: 256
  urlTTL: 60
});

module.exports.handler = function(event, context, callback) {
  const builder = new ResponseBuilder({
    bucket: 'bucket-for-responses',
    threshold: 256
  });

  const response = builder.build({
    statusCode: 200,
    body: {
      data: 'some data'
    }
  });

  callback(null, response);
}

build(options)

Creates and instance of Response with the following parameters:

Example
const ResponseBuilder = require('lambda-envelope').ResponseBuilder;

const builder = new ResponseBuilder({
  bucket: 'bucket-for-responses'
});

module.exports.handler = function(event, context, callback) {
  const response = builder.build({
    statusCode: 200,
    body: {
      data: 'some data'
    }
  });

  callback(null, response);
}

fromAWSResponse(awsResponse)

Method that handles raw AWS Lambda invocation response parsing, including compressed and S3 responses.

Example
const AWS = require('aws-sdk');
const ResponseBuilder = require('lambda-envelope').ResponseBuilder;

const lambda = new AWS.Lambda();
const params = {
  FunctionName: 'function-to-be-invoked',
  Payload: JSON.stringify({})
};

return lambda.invoke(params)
  .promise()
  .then(rawResponse => ResponseBuilder.fromAWSResponse(rawResponse))
  .then(response => {
    if (response.statusCode === 200) {
      /*success*/
    } else {
      /*error*/
    }
  });

License

The MIT License (MIT)

Copyright (c) 2017-2023 Anton Bazhal

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

3.0.0

1 year ago

2.0.5

4 years ago

2.0.4

4 years ago

2.0.3

5 years ago

2.0.2

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.0.4

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago