CodeWithYou

All Posts

  • Published on
    The automatic references created by CDK when you use resources across stacks are convenient but may block your deployments if you want to remove the resources that are referenced in this way. This blog will explain how to remove cross-stack references
  • Published on
    Retry with exponential backoff is a technique to handle network errors by retrying a failed request after waiting for an increasing amount of time between each retry attempt. In Node.js, you can implement retry with exponential backoff using the retry module or by building your own implementation. This technique is useful for dealing with unreliable networks or services that occasionally fail.
  • Published on
    AWS SDK v3 now stable and recommended for general use. AWS SDK for JavaScript(V2) is deprecated. This article is serries of tips and tricks to use aws-sdk v3. The first article is about how to save text file from S3 using aws-sdk v3.