![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
aws-lambda-nodejs-esbuild
Advanced tools
λ💨 AWS CDK Construct to bundle JavaScript and TypeScript AWS lambdas using extremely fast esbuild
AWS CDK Construct to build Node.js AWS lambdas using esbuild.
Note: The default JavaScript syntax target is set to ES2017
, so the final bundle will be supported by all AWS Lambda Node.js runtimes. If you still using an old lambda runtime and have to respect it you can play with esbuild target
option, see JavaScript syntax support for more details about syntax transform limitations.
yarn add --dev @aws-cdk/aws-lambda aws-lambda-nodejs-esbuild
# or
npm install -D @aws-cdk/aws-lambda aws-lambda-nodejs-esbuild
By default, no configuration required, but you can change esbuild behavior:
import * as cdk from '@aws-cdk/core';
import { NodejsFunction } from 'aws-lambda-nodejs-esbuild';
class NewStack extends cdk.Stack {
constructor(scope, id, props) {
super(scope, id, props);
new NodejsFunction(this, 'NewFunction', {
esbuildOptions: {
minify: false, // default
target: 'ES2017',
}
});
}
}
Check esbuild documentation for the full list of available options. Note that some options like entryPoints
or outdir
cannot be overwritten.
The package specified in the exclude
option is passed to esbuild as external
, but it is not included in the function bundle either. The default value for this option is ['aws-sdk']
.
The normal AWS CDK deploy procedure will automatically compile with esbuild
:
cdk init app --language=typescript
aws-lambda-nodejs-esbuild
as abovecdk deploy
See examples: minimal and complete
FAQs
λ💨 AWS CDK Construct to bundle JavaScript and TypeScript AWS lambdas using extremely fast esbuild
The npm package aws-lambda-nodejs-esbuild receives a total of 0 weekly downloads. As such, aws-lambda-nodejs-esbuild popularity was classified as not popular.
We found that aws-lambda-nodejs-esbuild 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.