
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
@planes/lambda-at-edge
Advanced tools
Provides handlers that can be used in CloudFront Lambda@Edge to deploy next.js applications to the edge
This library was created to decouple the core logic of deploying serverless rendered next.js applications on the Cloud agnostic of a specific provider. In other words, this library could be used to deploy via serverles components, AWS CDK, or any other providers you'd like.
const path = require('path');
const { Builder } = require("@sls-next/lambda-at-edge");
const nextConfigDir = '/dir/to/my/nextapp';
const outputDir = path.join(nextConfigDir, ".serverless_nextjs");
const builder = new Builder(
nextConfigDir,
outputDir,
{
cmd: './node_modules/.bin/next',
cwd: process.cwd(),
env: {},
args: ['build']
}
);
await builder.build();
After running the above, the output directory will contain the Lambda@Edge handlers necessary to server side render at the edge.
/dir/to/my/next-app/.serverless_nextjs/
> default-lambda
> manifest.json
> pages/
> node_modules/next-aws-cloudfront/index.js
> index.js # handler
> api-lambda
> manifest.json
> pages/api/
> node_modules/next-aws-cloudfront/index.js
> index.js # handler
The handlers need to be attached to the origin-request
trigger of CloudFront. The api-lambda
edge function should be attached to a CloudFront behaviour that only triggers in the event of /api/*
requests.
FAQs
Provides handlers that can be used in CloudFront Lambda@Edge to deploy next.js applications to the edge
The npm package @planes/lambda-at-edge receives a total of 0 weekly downloads. As such, @planes/lambda-at-edge popularity was classified as not popular.
We found that @planes/lambda-at-edge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.