1.0.1 • Published 1 year ago

@public.firetail.io/firetail-js-lambda v1.0.1

Weekly downloads
-
License
LGPL
Repository
github
Last release
1 year ago

Firetail Javascript Lambda Middleware

Overview

The purpose of this module is to correctly log out the AWS Lambda event and response payload to allow the firetail extension to then send it on to the firetail logging api

Code Coverage codecov License

The npm version is a function that wraps around an event handler function in a AWS Lambda to extract the event and response payloads into a base64 logging message.

Installation

Install the module into your project

Implementing Middleware in lambda function

import * as firetailWrapper from '@public.firetail.io/firetail-js-lambda'

module.exports.myFn = firetailWrapper((event,context) => {
  // do work here..
  return {
    statusCode:200,
    body: JSON.stringify(data)
  };
});
1.0.1

1 year ago

1.0.0

1 year ago