
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@netacea/cloudfront
Advanced tools

@netacea/cloudfront is a package designed to add
Netacea functionality to
CloudFront Lambda@Edge.
Quickest way to get started, is pulling the Netacea CloudFront template repository from github and following the steps in there to get up and running.
git clone https://github.com/Netacea/cloudfront-worker-template-typescript.git
Follow the README.md in the
cloudfront-worker-template-typescript
repository to get this deployed.
Run the following command to install the netacea worker
npm i @netacea/cloudfront --save
Require (javascript) or import (typescript) the worker
// JAVASCRIPT:
const NetaceaCloudFront = require('@netacea/cloudfront').default
// TYPESCRIPT:
import NetaceaCloudFront from '@netacea/cloudfront'
Then declare a variable for the worker.
const worker = new NetaceaCloudFront({
apiKey: 'your-api-key', // REQUIRED
secretKey: 'your-secret-key', // REQUIRED IF MITIGATING
kinesisStreamName: 'your-kinesis-stream-name', // REQUIRED
kinesisAccessKey: 'your-kinesis-access-key', // REQUIRED
kinesisSecretKey: 'your-kinesis-secret-key' // REQUIRED if not using secretsManager
})
It's best security practice to not commit your apiKey, secretKey,
kinesisAccessKey, kinesisSecretKey to any repository.
The code will run in the Viewer Request, Origin Response and
Viewer Response events.
Example Viewer Request:
import NetaceaCloudFront from '@netacea/cloudfront'
const worker = new NetaceaCloudFront({
apiKey: 'your-api-key', // REQUIRED
secretKey: 'your-secret-key', // REQUIRED IF MITIGATING
kinesisStreamName: 'your-kinesis-stream-name', // REQUIRED
kinesisAccessKey: 'your-kinesis-access-key', // REQUIRED
kinesisSecretKey: 'your-kinesis-secret-key' // REQUIRED if not using secretsManager
})
export const handler = async (event: any, context: any, callback: any): Promise<any> => {
context.callbackWaitsForEmptyEventLoop = false
const netaceaResponse = await worker.run(event)
const { request, response } = netaceaResponse.Records[0].cf
if (response !== undefined) {
return callback(null, response)
}
return callback(null, request)
}
Example Origin Response:
import NetaceaCloudFront from '@netacea/cloudfront'
const worker = new NetaceaCloudFront({
apiKey: 'your-api-key', // REQUIRED
secretKey: 'your-secret-key', // REQUIRED IF MITIGATING
kinesisStreamName: 'your-kinesis-stream-name', // REQUIRED
kinesisAccessKey: 'your-kinesis-access-key', // REQUIRED
kinesisSecretKey: 'your-kinesis-secret-key' // REQUIRED if not using secretsManager
})
export const handler = async (event: any, context: any, callback: any): Promise<void> => {
context.callbackWaitsForEmptyEventLoop = false
if (event.Records[0].cf.response.status >= 400) {
worker.addNetaceaCookiesToResponse(event)
worker.ingest(event)
}
return callback(null, event.Records[0].cf.response)
}
Example Viewer Response:
import NetaceaCloudFront from '@netacea/cloudfront'
const worker = new NetaceaCloudFront({
apiKey: 'your-api-key', // REQUIRED
secretKey: 'your-secret-key', // REQUIRED IF MITIGATING
kinesisStreamName: 'your-kinesis-stream-name', // REQUIRED
kinesisAccessKey: 'your-kinesis-access-key', // REQUIRED
kinesisSecretKey: 'your-kinesis-secret-key' // REQUIRED if not using secretsManager
})
export const handler = async (event: any, context: any, callback: any): Promise<void> => {
context.callbackWaitsForEmptyEventLoop = false
if (event.Records[0].cf.response.status < 400) {
worker.addNetaceaCookiesToResponse(event)
worker.ingest(event)
}
return callback(null, event.Records[0].cf.response)
}
This line is very important for ingest to take place. Without this, latency will be added to some requests.
context.callbackWaitsForEmptyEventLoop = false
npm i @netacea/cloudfront@latest --save
This will update the netacea module to the latest version.
FAQs
Netacea Cloudfront CDN integration
The npm package @netacea/cloudfront receives a total of 706 weekly downloads. As such, @netacea/cloudfront popularity was classified as not popular.
We found that @netacea/cloudfront demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.