@getjerry/next-aws-cloudfront
TypeScript icon, indicating that this package has built-in type declarations

1.7.10 • Public • Published

Next AWS CloudFront

Compat layer between next.js serverless page and CloudFront => Lambda@Edge.

Lambda@Edge event structure documentation can be found here.

Installation

npm install next-aws-cloudfront

Usage

const cloudFrontCompat = require("next-aws-cloudfront");
const page = require(".next/serverless/pages/somePage.js");

module.exports.render = async (event, context) => {
  const { req, res, responsePromise } = cloudFrontCompat(event.Records[0].cf);
  page.render(req, res);
  return responsePromise;
};

Options

Gzip compression

const { req, res, responsePromise } = cloudFrontCompat(event.Records[0].cf, {
  enableHTTPCompression: true // false by default
});

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i @getjerry/next-aws-cloudfront

    Weekly Downloads

    238

    Version

    1.7.10

    License

    MIT

    Unpacked Size

    34.7 kB

    Total Files

    8

    Last publish

    Collaborators

    • meteorlxy
    • xinzhe.zhou
    • xahhy
    • depeng_meng
    • musawir
    • denisgrankin
    • zhangciwu
    • xiazhen