0.0.16 • Published 9 months ago

@gemeentenijmegen/apigateway-http v0.0.16

Weekly downloads
-
License
EUPL-1.2
Repository
github
Last release
9 months ago

AWS Apigateway HTTP helpers

A package useful when developing serverless functions using AWS Lambda/Apigateway. It contains:

V2/Response

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

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

// 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' });
0.0.16

9 months ago

0.0.11

1 year ago

0.0.12

1 year ago

0.0.13

1 year ago

0.0.14

11 months ago

0.0.15

10 months ago

0.0.8

1 year ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago