You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Serverless is amazing and solves many issues with traditional systems. However,
21
21
22
22
Lambda Live Debugger connects to your deployed Lambda, routes requests to your computer, and sends responses back to the deployed Lambda. This allows you to debug locally, but the system behaves as if the code is running in the cloud with the same permissions. In case of code changes, you do not have to redeploy. The code is reloaded automatically without deploying or even restarting the debugger.
23
23
24
-
The tool attaches Lambda Extensions (via a Layer), intercepts, and relays calls to AWS IoT. AWS IoT transfers messages between your Lambda and the local machine. If the Lambda is written in TypeScript, it's transpiled to JavaScript. The code is executed via the Node Worker Thread.
24
+
The tool attaches Lambda Extensions (via a layer), intercepts, and relays calls to AWS IoT. AWS IoT transfers messages between your Lambda and the local machine. If the Lambda is written in TypeScript, it's transpiled to JavaScript. The code is executed via the Node Worker Thread.
25
25
26
26

27
27
@@ -34,11 +34,11 @@ AWS keys generated on the cloud for Lambda are transferred to the local environm
34
34
35
35
Lambda Live Debugger makes the following changes to your AWS infrastructure:
36
36
37
-
- Deploys the Lambda Layer
38
-
- Attaches the Layer to each Lambda you're debugging
37
+
- Deploys the Lambda layer
38
+
- Attaches the layer to each Lambda you're debugging
39
39
- Adds a policy to the Lambda Role for AWS IoT access
40
40
41
-
In case you do not want to debug all functions and add the Layer to them, you can limit to the ones you need via the `function` parameter.
41
+
In case you do not want to debug all functions and add the layer to them, you can limit to the ones you need via the `function` parameter.
42
42
43
43
The tool generates temporary files in the `.lldebugger` folder, which can be deleted after debugging. The wizard can add `.lldebugger` to `.gitignore` for you.
44
44
@@ -109,7 +109,7 @@ The configuration is saved to `lldebugger.config.ts`.
109
109
110
110
```
111
111
-V, --version output the version number
112
-
-r, --remove [option] Remove Lambda Live Debugger infrastructure. Options: 'keep-layer' (default), 'all'. The latest also removes the Lambda Layer
112
+
-r, --remove [option] Remove Lambda Live Debugger infrastructure. Options: 'keep-layer' (default), 'all'. The latest also removes the Lambda layer
113
113
-w, --wizard Program interactively asks for each parameter and saves it to lldebugger.config.ts
0 commit comments