https://github.com/nem035/sls-vscode-debug-ts
Serverless APIGateway using (Webpack, Typescript, VSCode with debugging)
https://github.com/nem035/sls-vscode-debug-ts
apigateway aws-lambda debugging serverless serverless-framework typescript vscode webpack
Last synced: 2 months ago
JSON representation
Serverless APIGateway using (Webpack, Typescript, VSCode with debugging)
- Host: GitHub
- URL: https://github.com/nem035/sls-vscode-debug-ts
- Owner: nem035
- Created: 2019-09-03T00:45:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T00:38:31.000Z (about 3 years ago)
- Last Synced: 2025-04-08T08:41:04.604Z (12 months ago)
- Topics: apigateway, aws-lambda, debugging, serverless, serverless-framework, typescript, vscode, webpack
- Language: JavaScript
- Homepage: https://github.com/nem035/sls-vscode-debug-ts
- Size: 4.31 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Serverless VSCode Debug TypeScript
Demo project on setting up a serverless API on [API Gateway](https://aws.amazon.com/api-gateway/) using the [Serverless Framework](https://serverless.com/), [TypeScript](https://www.typescriptlang.org) and [VSCode](https://code.visualstudio.com/) for debugging (breakpoints yay!).
Local development is executed with the [`serverless-offline`](https://github.com/dherault/serverless-offline) plugin.
## Installation
```sh
git clone https://github.com/nem035/sls-vscode-debug-ts
cd sls-vscode-debug-ts
npm i
```
## Requirements
- [Setup VSCode debugging](https://code.visualstudio.com/docs/editor/debugging)
## Debugging
1. Set a breakpoint within `hello` handler
2. Press the VSCode debug button
3. Make a request to the `/hello` endpoint
