I have some example code below that uses NodejsFunction today and I would like to be able to use this for LLRT, but I am bundling things myself using Bun. I would like a way to do this and then have it bundle the llrt with my pre bundled code.
const fn = new NodejsFunction(this, 'Lambda', {
entry: 'index.mjs',
handler: 'index.handler',
code: Code.fromAsset('dist'),
runtime: Runtime.NODEJS_20_X,
});
So the end result would look like this below and it would still be able to use llrt:
const fn = new LlrtFunction(this, 'Lambda', {
entry: 'index.mjs',
handler: 'index.handler',
code: Code.fromAsset('dist'),
});
I have some example code below that uses
NodejsFunctiontoday and I would like to be able to use this for LLRT, but I am bundling things myself usingBun. I would like a way to do this and then have it bundle the llrt with my pre bundled code.So the end result would look like this below and it would still be able to use llrt: