I'm looking for recommendations on the best way to learn JavaScript AWS Cloud Development Kit (CDK). I currently use the AWS API documentation, but I'm hoping for a resource that provides guided projects for practical application. Do you recommend any courses on platforms like Udemy, Cloud Guru, or even books? Thanks!
3 Answers
Before jumping into the CDK, it's essential to understand AWS itself. You should know how to set things up using the AWS Console. Once you have that down, transitioning to CDK or any infrastructure as code tool like Terraform will be a breeze!
Start by learning the basics of TypeScript. You need a solid foundation in that first. Then dive into AWS basics, figuring out what you want to build. Once you've got that down, using the CDK will be as straightforward as any other library. Just ensure you're familiar with the overall AWS architecture. What specific projects do you have in mind to create?
Honestly, I wouldn't suggest using JavaScript for CDK. TypeScript is a better choice for this kind of work because of its strong typing, which can really help avoid issues down the road.
Totally agree! TypeScript is a solid fit for CDK. It just makes everything cleaner and more reliable.
I've worked with AWS for years; I'm just looking for a practical learning path to follow.