-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to debug the application locally #218
Comments
@aslary have you tried using claudia-local-api ? You can run Claudia locally like an express app during development. Here is an npm script that I use to run mine |
Something else you could consider is Thundra.io - they have tools for allowing you to attach a debugger to a lambda function as it's actually running in AWS. |
@dmackinn - have you found a way to attach a debugger to the process being run by claudia-local-api? |
@rcoundon For local development using claudia-local-api it runs just like an express server and you can console.log anywhere in the app. |
@dmackinn Yeah, I've used it, just haven't managed to attach a live debugger so was wondering if anyone had. |
After digging through the docs of Claudia and AWS, I am still not able to setup a local environment, in which I can debug the application. I am using the Claudia API Builder for the REST methods.
Claudia is great for simple deployment, but how can I debug my app locally?
I have seen this: https://claudiajs.com/tutorials/testing-locally.html, but my goal is really to analyse my program line by line with the debugger.
The text was updated successfully, but these errors were encountered: