Feedback appreciated! If you have an idea for how this library can be improved please open an issue.
This library provides custom Lambda function wrappers which expose standard, abstracted functionality so that developers can focus on writing business logic instead of parsing event payloads and crafting response objects.
AWS Lambda supports a wide variety of event triggers, each with unique payloads and expected responses. The Lambda execution environment, however, only provides the raw events and has no included mechanisms for simplifying response object creation. For example, API Gateway events include only the raw request body, leaving it up to developers to implement parsing themselves. Similarly, the developer is responsible for creating a response object which includes the correct HTTP status code and headers. Given the standard nature of these kinds of concerns, this library exposes helpful abstractions like parsed HTTP bodies based on content-type headers, and success response functions which create response objects with the correct status codes and headers for returning.
Install and save the package to package.json
as a dependency:
npm i --save @manwaring/lambda-wrapper
yarn add @manwaring/lambda-wrapper
If you want the wrapper to log request and response messages (helpful for debugging set an environemnt variable for LAMBDA_WRAPPER_LOG=true
.
If you want each invocation to be tagged with the AWS region, environment/, and Git revision simply set environment variables for each: REGION=us-east-1
, STAGE=prod
, REVISION=f4ba682
(see git-rev-sync and serverless-plugin-git-variables for libraries that can help you set git revision)
All of the events bellow have a corresponding wrapper which provides a deconstructed method signature exposing parsed/unmarshalled request parameters and helper response methods.
- API Gateway with support for cors headers and 200, 302, 400, and 500 responses
- API Gateway HTTP API with support for cors headers and 200, 302, 400, and 500 responses
- CloudFormation Custom Resource with support for CloudFormation successes and failures
- DynamoDB Stream with support for success and failure responses
- Lambda Authorizer with support for creating access policies for successfully authorized requests
- SNS with support for success and failure responses
- Generic event wrapper with support for success and failure responses
import { api } from '@manwaring/lambda-wrapper';
import { CustomInterface } from './custom-interface';
// By passing in CustomInterface as a generic the async method signature will correctly identify newVersions as an array of CustomInterface, making TypeScript development easier (note that the generic is not required in JavaScript projects)
export const handler = api<CustomInterface>(async ({ body, path, success, error }) => {
try {
const { pathParam1, pathParam2 } = path;
const results = await doSomething(body, pathParam1, pathParam2);
return success(results);
} catch (err) {
return error(err);
}
});
export interface ApiSignature<T = any> {
event: APIGatewayEvent; // original event
body: T; // JSON parsed body payload if exists (otherwise undefined)
websocket: WebsocketRequest; // websocket connection payload
path: { [name: string]: string }; // path param payload as key-value pairs if exists (otherwise undefined)
query: { [name: string]: string }; // query param payload as key-value pairs if exists (otherwise undefined)
headers: { [name: string]: string }; // header payload as key-value pairs if exists (otherwise undefined)
testRequest: boolean; // indicates if this is a test request - looks for a header matching process.env.TEST_REQUEST_HEADER (dynamic from application) or 'Test-Request' (default)
auth: any; // auth context from custom authorizer if exists (otherwise undefined)
success(payload?: any, replacer?: (this: any, key: string, value: any) => any): ApiResponse; // returns 200 status code with optional payload as body
invalid(errors?: string[]): ApiResponse; // returns 400 status code with optional errors as body
notFound(message?: string): ApiResponse; // returns 404 status code with optional message as body
notAuthorized(message?: string): ApiResponse; // returns 403 status code with optional message as body
redirect(url: string): ApiResponse; // returns 302 status code (redirect) with new url
error(error?: any): ApiResponse; // returns 500 status code with optional error as body
}
export interface WebsocketRequest {
accountId: string;
apiId: string;
connectedAt?: number;
connectionId?: string;
domainName?: string;
domainPrefix?: string;
eventType?: string;
extendedRequestId?: string;
protocol: string;
httpMethod: string;
identity: APIGatewayEventIdentity;
messageDirection?: string;
messageId?: string | null;
path: string;
stage: string;
requestId: string;
requestTime?: string;
requestTimeEpoch: number;
resourceId: string;
resourcePath: string;
routeKey?: string;
}
interface ApiResponse {
statusCode: number;
headers: { [name: string]: string | boolean };
body?: string;
}
*Note that each callback helper function (success, invalid, redirect, error) includes CORS-enabling header information
import { httpApi } from '@manwaring/lambda-wrapper';
import { CustomInterface } from './custom-interface';
// By passing in CustomInterface as a generic the async method signature will correctly identify newVersions as an array of CustomInterface, making TypeScript development easier (note that the generic is not required in JavaScript projects)
export const handler = httpApi<CustomInterface>(async ({ body, path, success, error }) => {
try {
const { pathParam1, pathParam2 } = path;
const results = await doSomething(body, pathParam1, pathParam2);
return success(results);
} catch (err) {
return error(err);
}
});
export interface HttpApiSignature<T = any> {
event: HttpApiEvent; // original event from https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html#http-api-develop-integrations-lambda.proxy-format
body: T; // JSON parsed body payload if exists (otherwise undefined)
path: { [name: string]: string }; // path param payload as key-value pairs if exists (otherwise undefined)
query: { [name: string]: string }; // query param payload as key-value pairs if exists (otherwise undefined)
headers: { [name: string]: string }; // header payload as key-value pairs if exists (otherwise undefined)
testRequest: boolean; // indicates if this is a test request - looks for a header matching process.env.TEST_REQUEST_HEADER (dynamic from application) or 'Test-Request' (default)
auth: any; // auth context from custom authorizer if exists (otherwise undefined)
success(payload?: any, replacer?: (this: any, key: string, value: any) => any): ApiResponse; // returns 200 status code with optional payload as body
invalid(errors?: string[]): ApiResponse; // returns 400 status code with optional errors as body
notFound(message?: string): ApiResponse; // returns 404 status code with optional message as body
notAuthorized(message?: string): ApiResponse; // returns 403 status code with optional message as body
redirect(url: string): ApiResponse; // returns 302 status code (redirect) with new url
error(error?: any): ApiResponse; // returns 500 status code with optional error as body
}
interface ApiResponse {
statusCode: number;
headers: { [name: string]: string | boolean };
body?: string;
}
*Note that each callback helper function (success, invalid, redirect, error) includes CORS-enabling header information
import { cloudFormation } from '@manwaring/lambda-wrapper';
export const handler = cloudFormation(({ event, success, failure }) => {
try {
const { BucketName } = event.ResourceProperties;
return success();
} catch (err) {
return failure(err);
}
});
*Note that currently the method wrapped by cloudFormation cannot be async - for reasons that aren't entirely clear to me when the method is async the requests to update CloudFormation with the correct action status fail, leaving a stack in the 'pending' state
interface CloudFormationSignature {
event: CloudFormationCustomResourceEvent; // original event
success(payload?: any): void; // sends CloudFormation success event
failure(message?: any): void; // sends CloudFormation failure event
}
import { dynamodbStream } from '@manwaring/lambda-wrapper';
import { CustomInterface } from './custom-interface';
// By passing in CustomInterface as a generic the async method signature will correctly identify newVersions as an array of CustomInterface, making TypeScript development easier (note that the generic is not required in JavaScript projects)
export const handler = dynamodbStream<CustomInterface>(async ({ newVersions, success, error }) => {
try {
newVersions.forEach((version) => console.log(version));
return success(newVersions);
} catch (err) {
return error(err);
}
});
interface CustomInterface {
id: number;
value: string;
}
interface DynamoDBStreamSignature<T> {
event: DynamoDBStreamEvent; // original event
newVersions: T[]; // array of all unmarshalled javascript objects of new images
oldVersions: T[]; // array of all unmarshalled javascript objects of old images
versions: Version<T>[]; // array of full version object (new image, old image, etc - see Version interface)
success(message?: any): any; // logs and returns the message
error(error?: any): void; // logs the error and throws it
}
interface Version<T> {
newVersion: T; // unmarshalled javascript object of new image (if exists) or null
oldVersion: T; // unmarshalled javascript object of old image (if exists) or null
keys: any; // unmarshalled javascript object of keys (includes key values)
tableName: string; // name of the table the object came from
tableArn: string; // arn of the table the object came from
eventName: 'INSERT' | 'MODIFY' | 'REMOVE'; // name of the event (INSERT || MODIFY || REMOVE)
}
import { authorizer } from '@manwaring/lambda-wrapper';
const verifier = new Verifier(); // setup and configure JWT validation library
export const handler = authorizer(async ({ token, valid, invalid }) => {
try {
if (!token) {
return invalid('Missing token');
}
const jwt = await verifier.verifyAccessToken(token);
return valid(jwt);
} catch (err) {
return invalid(err);
}
});
interface AuthorizerSignature {
event: CustomAuthorizerEvent; // original event
token: string; // authorizer token from original event
valid(jwt: any): Policy; // returns AWS policy to authenticate request, and adds auth context if available
invalid(message?: any): void; // records invalid information and throws 401 unauthorized
error(error?: any): void; // records error information and throws 401 unauthorized
}
interface Policy {
principalId: string;
policyDocument: {
Version: string;
Statement: {
Action: string;
Effect: string;
Resource: string;
}[];
};
}
import { sns } from '@manwaring/lambda-wrapper';
import { CustomInterface } from './custom-interface';
// By passing in CustomInterface as a generic the async method signature will correctly identify newVersions as an array of CustomInterface, making TypeScript development easier (note that the generic is not required in JavaScript projects)
export const handler = sns<CustomInterface>(async ({ message, success, error }) => {
try {
console.log(message);
return success();
} catch (err) {
return error(err);
}
});
interface SnsSignature {
event: SNSEvent; // original event
message: any; // JSON-parsed message from event
success(message?: any): any; // logs and returns the message
error(error?: any): void; // logs the error and throws
}
import { wrapper } from '@manwaring/lambda-wrapper';
import { CustomInterface } from './custom-interface';
// By passing in CustomInterface as a generic the async method signature will correctly identify newVersions as an array of CustomInterface, making TypeScript development easier (note that the generic is not required in JavaScript projects)
export const handler = wrapper<CustomInterface>(async ({ event, success, error }) => {
try {
const { value1, value2 } = event;
const results = await doSomething(value1, value2);
return success(results);
} catch (err) {
return error(err);
}
});
interface WrapperSignature<T> {
event: T; // original event
success(message?: any): any; // logs and returns the message
error(error?: any): void; // logs the error and throws
}
There is one working example of how this package can be used in a simple 'hello world' serverless application: