What is the best way to debug Typescript Serverless framework functions deployed to AWS Lambda without using serverless-offline
package?
My project is quite reliant on other AWS services such as AWS Cognito, SNS, SQS etc, and other external services that debugging live deployed Lambda code looks like the best option, if possible.
I am starting to question Typescript as best choice for Lambda as its transpiles to optimized ES5 Javascript which is not suitable for live editing via AWS Lambda online editor.
What to use in complex AWS environments?
serverless-offline
- do not use Typescript, use ES6, it can run on AWS Lambda Node.js environment
- ?