Skip to content

Commit 76fc20c

Browse files
authored
chore(docs): add link to performance tuning demo (#1960)
1 parent a9e5ba6 commit 76fc20c

File tree

6 files changed

+23
-12
lines changed

6 files changed

+23
-12
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can use the library in both TypeScript and JavaScript code bases.
1818
- [Lambda layers](#lambda-layers)
1919
- [NPM modules](#npm-modules)
2020
- [Examples](#examples)
21-
- [Serverless TypeScript Demo application](#serverless-typescript-demo-application)
21+
- [Demo applications](#demo-applications)
2222
- [Contribute](#contribute)
2323
- [Roadmap](#roadmap)
2424
- [Connect](#connect)
@@ -82,11 +82,13 @@ Or refer to the installation guide of each utility:
8282
* [CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk)
8383
* [SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam)
8484

85-
### Serverless TypeScript Demo application
85+
### Demo applications
8686

8787
The [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) shows how to use Powertools for AWS Lambda (TypeScript).
8888
You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
8989

90+
The [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository also uses Powertools for AWS Lambda (TypeScript) as well as demonstrating other performance tuning techniques for Lambda functions written in TypeScript.
91+
9092
## Contribute
9193

9294
If you are interested in contributing to this project, please refer to our [Contributing Guidelines](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CONTRIBUTING.md).

docs/index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ You can include Powertools for AWS Lambda (TypeScript) Lambda Layer using [AWS L
6363
| `eu-south-1` | [arn:aws:lambda:eu-south-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
6464
| `eu-south-2` | [arn:aws:lambda:eu-south-2:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
6565
| `ca-central-1` | [arn:aws:lambda:ca-central-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
66-
| `ca-west-1` | [arn:aws:lambda:ca-west-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
66+
| `ca-west-1` | [arn:aws:lambda:ca-west-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
6767
| `sa-east-1` | [arn:aws:lambda:sa-east-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
6868
| `af-south-1` | [arn:aws:lambda:af-south-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
6969
| `me-south-1` | [arn:aws:lambda:me-south-1:094274105915:layer:AWSLambdaPowertoolsTypeScript:27](#){: .copyMe}:clipboard: |
@@ -277,7 +277,8 @@ The project's repository includes examples of how to instrument your functions b
277277
* [AWS CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk){target="_blank"}
278278
* [AWS SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam){target="_blank"}
279279

280-
If instead you want to see Powertools for AWS Lambda (TypeScript) in a slightly more complex use case, check the [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo). You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
280+
If instead you want to see Powertools for AWS Lambda (TypeScript) in a slightly more complex use case, check the [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) or the [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository. Both demos use Powertools for AWS Lambda (TypeScript) as well as demonstrating other common techniques for Lambda functions written in TypeScript.
281+
281282

282283
## Features
283284

packages/commons/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can use the library in both TypeScript and JavaScript code bases.
1515
- [Getting started](#getting-started)
1616
- [Installation](#installation)
1717
- [Examples](#examples)
18-
- [Serverless TypeScript Demo application](#serverless-typescript-demo-application)
18+
- [Demo applications](#demo-applications)
1919
- [Contribute](#contribute)
2020
- [Roadmap](#roadmap)
2121
- [Connect](#connect)
@@ -66,11 +66,13 @@ Or refer to the installation guide of each utility:
6666
* [CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk)
6767
* [SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam)
6868

69-
### Serverless TypeScript Demo application
69+
### Demo applications
7070

7171
The [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) shows how to use Powertools for AWS Lambda (TypeScript).
7272
You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
7373

74+
The [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository also uses Powertools for AWS Lambda (TypeScript) as well as demonstrating other performance tuning techniques for Lambda functions written in TypeScript.
75+
7476
## Contribute
7577

7678
If you are interested in contributing to this project, please refer to our [Contributing Guidelines](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CONTRIBUTING.md).

packages/logger/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use the library in both TypeScript and JavaScript code bases.
1414
- [Getting started](#getting-started)
1515
- [Installation](#installation)
1616
- [Examples](#examples)
17-
- [Serverless TypeScript Demo application](#serverless-typescript-demo-application)
17+
- [Demo applications](#demo-applications)
1818
- [Contribute](#contribute)
1919
- [Roadmap](#roadmap)
2020
- [Connect](#connect)
@@ -63,11 +63,13 @@ Or refer to the installation guide of each utility:
6363
* [CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk)
6464
* [SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam)
6565

66-
### Serverless TypeScript Demo application
66+
### Demo applications
6767

6868
The [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) shows how to use Powertools for AWS Lambda (TypeScript).
6969
You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
7070

71+
The [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository also uses Powertools for AWS Lambda (TypeScript) as well as demonstrating other performance tuning techniques for Lambda functions written in TypeScript.
72+
7173
## Contribute
7274

7375
If you are interested in contributing to this project, please refer to our [Contributing Guidelines](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CONTRIBUTING.md).

packages/metrics/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use the library in both TypeScript and JavaScript code bases.
1414
- [Getting started](#getting-started)
1515
- [Installation](#installation)
1616
- [Examples](#examples)
17-
- [Serverless TypeScript Demo application](#serverless-typescript-demo-application)
17+
- [Demo applications](#demo-applications)
1818
- [Contribute](#contribute)
1919
- [Roadmap](#roadmap)
2020
- [Connect](#connect)
@@ -62,11 +62,13 @@ Or refer to the installation guide of each utility:
6262
* [CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk)
6363
* [SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam)
6464

65-
### Serverless TypeScript Demo application
65+
### Demo applications
6666

6767
The [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) shows how to use Powertools for AWS Lambda (TypeScript).
6868
You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
6969

70+
The [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository also uses Powertools for AWS Lambda (TypeScript) as well as demonstrating other performance tuning techniques for Lambda functions written in TypeScript.
71+
7072
## Contribute
7173

7274
If you are interested in contributing to this project, please refer to our [Contributing Guidelines](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CONTRIBUTING.md).

packages/tracer/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can use the library in both TypeScript and JavaScript code bases.
1414
- [Getting started](#getting-started)
1515
- [Installation](#installation)
1616
- [Examples](#examples)
17-
- [Serverless TypeScript Demo application](#serverless-typescript-demo-application)
17+
- [Demo applications](#demo-applications)
1818
- [Contribute](#contribute)
1919
- [Roadmap](#roadmap)
2020
- [Connect](#connect)
@@ -62,11 +62,13 @@ Or refer to the installation guide of each utility:
6262
* [CDK](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/cdk)
6363
* [SAM](https://github.com/aws-powertools/powertools-lambda-typescript/tree/main/examples/sam)
6464

65-
### Serverless TypeScript Demo application
65+
### Demo applications
6666

6767
The [Serverless TypeScript Demo](https://github.com/aws-samples/serverless-typescript-demo) shows how to use Powertools for AWS Lambda (TypeScript).
6868
You can find instructions on how to deploy and load test this application in the [repository](https://github.com/aws-samples/serverless-typescript-demo).
6969

70+
The [AWS Lambda performance tuning](https://github.com/aws-samples/optimizations-for-lambda-functions) repository also uses Powertools for AWS Lambda (TypeScript) as well as demonstrating other performance tuning techniques for Lambda functions written in TypeScript.
71+
7072
## Contribute
7173

7274
If you are interested in contributing to this project, please refer to our [Contributing Guidelines](https://github.com/aws-powertools/powertools-lambda-typescript/blob/main/CONTRIBUTING.md).

0 commit comments

Comments
 (0)