https://github.com/homeprojectstudy/aws-fundamentals
Project using AWS to learn concepts
https://github.com/homeprojectstudy/aws-fundamentals
aws aws-cdk aws-lambda cognito gateway-api http rest-api typescript
Last synced: 7 months ago
JSON representation
Project using AWS to learn concepts
- Host: GitHub
- URL: https://github.com/homeprojectstudy/aws-fundamentals
- Owner: HomeProjectStudy
- Created: 2025-03-29T16:45:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-01T18:09:39.000Z (11 months ago)
- Last Synced: 2025-06-28T08:47:12.482Z (9 months ago)
- Topics: aws, aws-cdk, aws-lambda, cognito, gateway-api, http, rest-api, typescript
- Language: TypeScript
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Welcome to your CDK TypeScript project
This is a blank project for CDK development with TypeScript.
The `cdk.json` file tells the CDK Toolkit how to execute your app.
## Useful commands
* `npm run build` compile typescript to js
* `npm run watch` watch for changes and compile
* `npm run test` perform the jest unit tests
* `npx cdk deploy` deploy this stack to your default AWS account/region
* `npx cdk diff` compare deployed stack with current state
* `npx cdk synth` emits the synthesized CloudFormation template
"devDependencies": {
"@types/aws-lambda": "^8.10.125",
"aws-sdk": "^2.1485.0",
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"@types/uuid": "^9.0.6",
"aws-cdk": "2.114.1",
"@aws-cdk/aws-apigatewayv2-alpha": "^2.114.1-alpha.0",
"@aws-cdk/aws-apigatewayv2-integrations-alpha": "^2.114.1-alpha.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2"
},
"dependencies": {
"aws-xray-sdk": "^3.5.3",
"aws-cdk-lib": "2.114.1",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}