Skip to content

GemeenteNijmegen/modules-apigateway-http

Repository files navigation

AWS Apigateway HTTP helpers

A package useful when developing serverless functions using AWS Lambda/Apigateway. Supports the REST and HTTP flavors of the AWS API Gateway It contains:

V1/Response

A response object with several methods for common http responses. Return these from your lambda handler:

For V1 (rest) responses:

import { Response } from '@gemeentenijmegen/apigateway-http/lib/V1/Response';

For V2 (http) responses:

import { Response } from '@gemeentenijmegen/apigateway-http/lib/V2/Response';

Then use like this:

// Redirect to https://example.com
Response.redirect('https://example.com');

// Permanently redirect to https://example.com
Response.redirect('https://example.com', 301);

// Return http 403: Not allowed response
Response.error(403);

// Return a html page
Response.html('<!doctype html><html><head><title>My page</title></head><body>The html body</body></html>');

// Return a json response from a javascript object
Response.html({ key: 'value' });

About

Response utility for HTTP API Gateway

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •