Socket
Socket
Sign inDemoInstall

cdk-lambda-llrt

Package Overview
Dependencies
198
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cdk-lambda-llrt

Deploy Lambda functions with LLRT (Low Latency Runtime)


Version published
Weekly downloads
799
increased by23.68%
Maintainers
1
Install size
277 kB
Created
Weekly downloads
 

Readme

Source

AWS CDK LLRT Function construct

This is a CDK construct library that aims to accelerate your experiment on LLRT, a lightweight JavaScript runtime for AWS Lambda.

Usage

Install it via npm:

npm install cdk-lambda-llrt

Then you can use LlrtFunction construct. Just set an entry point for the function.

import { LlrtFunction } from 'cdk-lambda-llrt';

const handler = new LlrtFunction(this, 'Handler', {
    entry: 'lambda/index.ts',
});

If you are already using NodejsFunction construct, you should be able to just replace it to LlrtFunction.

[!WARNING] LLRT is currently experimental and not fully compatible with Node.js. You should expect some trial and errors to use LLRT with your existing code.

If you want to upgrade the LLRT version, remove the .tmp directory, which contains the cache of LLRT binary fetched from GitHub (only applicable when you set llrtVersion to latest (default)).

Setting platform=browser

In some cases, your code may run successfully on LLRT by setting bundle target platform to browser (e.g. when using AWS SDK packages that are not bundled in LLRT or packages that can run using Web APIs.) You can configure it by the following code:

import { LlrtFunction } from 'cdk-lambda-llrt';

const handler = new LlrtFunction(this, 'Handler', {
    entry: 'lambda/index.ts',
    bundling: {
        esbuildArgs: { '--platform': 'browser' },
    }
});

Examples

See example for examples to use LlrtFunction construct.

Keywords

FAQs

Last updated on 13 Apr 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc