Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cdk-lambda-fleet

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cdk-lambda-fleet - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

9

package.json
{
"name": "cdk-lambda-fleet",
"version": "1.1.0",
"version": "1.2.0",
"description": "Deploy multiple AWS Lambda functions as docker images using AWS Cloud Development Kit",

@@ -24,2 +24,3 @@ "main": "aws/constructs/LambdaFleet.js",

"devDependencies": {
"@aws-cdk/core": "1.76.0",
"@aws-cdk/assert": "1.76.0",

@@ -37,9 +38,3 @@ "@aws-cdk/aws-ecr": "^1.76.0",

"typescript": "~3.9.7"
},
"dependencies": {
"@aws-cdk/aws-sns": "1.76.0",
"@aws-cdk/aws-sns-subscriptions": "1.76.0",
"@aws-cdk/aws-sqs": "1.76.0",
"@aws-cdk/core": "1.76.0"
}
}

@@ -11,3 +11,3 @@ # AWS CDK: Lambda Fleet

Create a folder like `src/lambda-node-example` and store a `Dockerfile` there:
You can fork this repository and create a folder like `src/lambda-node-example` and store a `Dockerfile` there:

@@ -32,2 +32,23 @@ ```Dockerfile

## CDK Construct
When using the AWS CDK in TypeScript, you can use the published `LambdaFleet` construct:
```typescript
import * as path from "path";
import * as cdk from "@aws-cdk/core";
import { LambdaFleet } from "cdk-lambda-fleet";
export class FleetStack extends cdk.Stack {
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) {
super(scope, id, props);
new LambdaFleet(this, "Fleet", {
path: path.resolve(__dirname, "../../src"),
});
}
}
```
## Examples

@@ -34,0 +55,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc