A sample JSII construct lib for Express Apps in AWS Fargate


Keywords
aws, cdk, express, fargate
License
Apache-2.0
Install
npm install cdk-fargate-express@0.4.178

Documentation

awscdk-jsii-template NPM version PyPI version Release

cdk-fargate-express

Deploy your serverless Express app in AWS with AWS CDK

Usage

On deployment, AWS CDK executs docker build with your Express code assets at express.d

For example:

import { ExpressService } from 'cdk-fargate-express';

new ExpressService(stack, 'testing', { vpc });

You may specify different folder by specifying expressAssets property:

new ExpressService(stack, 'testing', {
  vpc,
  expressAssets: path.join(__dirname, '../another_express.d'),
});