1.0.1 • Published 5 years ago

aws-lambda-runner v1.0.1

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

AWS Lambda Runner

A tiny (2KB Compressed & Minified) wrapper utility to make running your aws lambda functions cleaner. Inspired heavily/completely by the node-apex library.

Features

  • Pairs perfectly with the apex serverless solution.
  • Supports Lambda Proxy Integrations w/ API Gateway Proxy.
  • Provide custom headers & status codes to include with the response.
  • Enable cors for the requests.
  • One function can handle methods and paths.

Installation

yarn add aws-lambda-runner@next

OR

npm install --save aws-lambda-runner@next

Example

Without Default Configuration

import run from "aws-lambda-runner";

export default run((body, config) => ({
	hello: "world"
}));

With Default Configuration

import run from "aws-lambda-runner";

export default run(
	{
		settings: {
			// Do we want the runner to log to cloudwatch (via console)
			log: true,
			// default status code to return to the caller when using proxy integration.
			statusCode: 200,
			// do we want to add the 'Access-Control-Allow-Origin' header to our response?
			cors: true,
			// do we want to allow the lambda process to flush the event loop before it freezes
			// this process? If false, all processing will be frozen immediately upon resolution
			// of the runner Promise (which calls our function below). (defaults: true)
			awaitEventLoop: false
		},
		response: {
			// do we want to add any headers to the response?  We can add new headers by
			// mutating the received config object
			headers: null
		}
	},
	async (body, config, ctx, cb) => {
		/*
    Handle our function, the resolution of the promise will be used to
    populate the body.  This does not need to be an async function, we
    can return a standard object or promise to be resolved.  

    Errors during execution are caught and passed to the caller.
  */
		return {
			hello: "world"
		};
	}
);

Plugins

Lambda-Runner supports a simple plugin system which allows you to handle various hooks during the lifecycle of your Lambda's execution.

Plugins are classes which will be instatiated for each request. One may optionally pass settings to the plugin.

Plugins can mutate the various objects. This allows them to add functionality to your requests such as adding response headers, formatting responses, or anything they might want to accomplish.

If a plugin returns a Promise, the promise will be resolved before continuing.

Plugin Hooks

  • constructor
  • onExecute
  • onComplete
  • onError

Plugin Example

Here is a very simple example of a plugin which attempts to capture the authorizer claims and/or API Key that was used for the request and moves the data into config.auth.

Function
export default run({
  plugins: [
    [ AuthorizerPlugin, {
      removeAuthorizer: false
    } ],
    PromiseMapPlugin
  ]
}, async (body, config, context) => {
  /* Your Function */
}

Configuration Object

Dynamic Configuration Values

By mutating the config object (or setting the values in the runner configuration), you can change how the request will be handled. This allows you to set the response code, add cors headers, add errors, and control the function.

  • log (default: false) <Boolean|Array> - what level of runner logging should be performed?
    • "errors", "exceptions", "debug"
  • headers (default: null) <null|Object Literal> - headers to include with the response.
  • cors | (default: false) <Boolean> - should the "Access-Control-Allow-Origin" header be added to the response?
  • statusCode (default: 200) <Number> - the default status code to respond with if the request is successful.
  • errorCode (default: 400) <Number> - the default status code to respond with if errors are encountered.
  • errors (default: []) <Array> - an array of errors that should be provided. If any errors are pushed into this array, an error will be assumed.
  • plugins (default: []) <Array> - provided in the initial runner configuration, plugins allow extending the capabilities of the runner through hooks.
  • onError (default: null) <null|Function> - a function to allow extra handling of encountered errors.
  • awaitEventLoop (default: true) <Boolean> - see the provided link, this controls context.callbackWaitsForEmptyEventLoop.
  • methods (default: null) <null|Array> - an array of methods that should be accepted for this request. If not defined, all will be accepted.

Static Configuration Values

These values are set internally on the config object. Mutating these values will generally not affect the normal operation of the runner (although it shouldn't be done as plugins may expect these values to be intact).

  • isProxy
  • resource
  • path
  • method
  • request
  • client
  • queries (url queries)
  • params (pathParameters)
  • stage (stageVariables)

More Information will come about these values, here is a stringified example of the config object.

{
	"isProxy": true,
	"resource": "/web/session",
	"path": "/v2/web/session",
	"method": "POST",
	"log": "debug",
	"statusCode": 200,
	"cors": true,
	"headers": null,
	"errorCode": 400,
	"awaitEventLoop": false,
	"client": {
		"agent":
			"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
		"forwardedFor": ["<masked-ip>", "<masked-ip>"],
		"forwardedPort": 443,
		"country": "US",
		"sourceIP": "<masked-ip>"
	},
	"queries": {
		"version": "2.0"
	},
	"params": {
		"user": "example_user"
	},
	"stage": null,
	"errors": [],
	"request": {
		"headers": {
			"Accept": "application/json, text/plain, */*",
			"Accept-Encoding": "gzip, deflate, br",
			"Accept-Language": "en-US,en;q=0.8",
			"Authorization": "<masked-authorization-header>",
			"CloudFront-Forwarded-Proto": "https",
			"CloudFront-Is-Desktop-Viewer": "true",
			"CloudFront-Is-Mobile-Viewer": "false",
			"CloudFront-Is-SmartTV-Viewer": "false",
			"CloudFront-Is-Tablet-Viewer": "false",
			"CloudFront-Viewer-Country": "US",
			"Content-Type": "application/json charset=UTF-8",
			"Host": "<masked-host>",
			"Origin": "<masked-origin>",
			"Referer": "<masked-referer>",
			"User-Agent":
				"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
			"Via": "<masked>",
			"X-Amz-Cf-Id": "<masked>",
			"X-Amzn-Trace-Id": "<masked>",
			"x-api-key": "<masked-api-key>",
			"X-Forwarded-For": "<masked>, <masked>",
			"X-Forwarded-Port": "443",
			"X-Forwarded-Proto": "https"
		},
		"requestContext": {
			"path": "/v2/web/session",
			"accountId": "<masked-account-id>",
			"resourceId": "<masked-resource-id>",
			"stage": "production",
			"requestId": "63851d0d-40d1-11e7-9be4-d54b94333e61",
			"identity": {
				"cognitoIdentityPoolId": null,
				"accountId": null,
				"cognitoIdentityId": null,
				"caller": null,
				"apiKey": "<masked-api-key>",
				"sourceIp": "<masked-ip>",
				"accessKey": null,
				"cognitoAuthenticationType": null,
				"cognitoAuthenticationProvider": null,
				"userArn": null,
				"userAgent":
					"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
				"user": null
			},
			"resourcePath": "/web/session",
			"httpMethod": "POST",
			"apiId": "95r35czxwj"
		},
		"isBase64Encoded": false
	}
}

Useful Links & Resources

2.6.0

5 years ago

2.5.4

6 years ago

2.5.3

6 years ago

2.5.2

6 years ago

2.5.1

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.0

6 years ago

2.2.0

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.24

6 years ago

2.0.23

6 years ago

2.0.22

6 years ago

2.0.21

6 years ago

2.0.20

6 years ago

2.0.19

6 years ago

2.0.18

6 years ago

2.0.17

6 years ago

2.0.16

6 years ago

0.0.15

6 years ago

0.0.14

6 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago