Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 2.01 KB

02-minimum-getting-started.md

File metadata and controls

51 lines (35 loc) · 2.01 KB

Step 2 最小限入門

Step 1 環境準備で設定した環境が設定済みであることを前提に進めます。

実行

ターミナル(コマンドプロンプト, PowerShell, bash, zsh, etc.)を立ち上げ、以下コマンドを実行します。

% git clone [email protected]:intptr-t/aws-lambda-local-debug.git
% cd src/02-1-getting-started
% code .

Visual Studio Codeが立ち上がったら、index.js を開きブレークポイントをセットします。

次に Visual Studio Codeのターミナルを立ち上げます。 立ち上がったターミナルに以下を貼り付け実行します。

% sam local invoke "test" --template ./template.yaml --docker-network sam-local --no-event --debug-port 5858 --profile local-test

Visual Studio Codeのターミナルに以下の内容が出力されたら、デバッグ開始の準備完了です。 F5キーを入力し、デバッグ実行します。

Debugger listening on ws://0.0.0.0:5858/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
For help, see: https://nodejs.org/en/docs/inspector

実行結果

2021-01-24T18:12:43.649Z	289a5fc1-f44e-4614-8efa-ea443bcfd0eb	INFO	hello, world!
END RequestId: 289a5fc1-f44e-4614-8efa-ea443bcfd0eb
REPORT RequestId: 289a5fc1-f44e-4614-8efa-ea443bcfd0eb	Init Duration: 0.82 ms	Duration: 6741.21 ms	Billed Duration: 6800 ms	Memory Size: 128 MB	Max Memory Used: 128 MB	
null

実行結果

コマンドの詳細 公式リファレンス

Prev to Step 1 環境準備

Back to README

Next To Step 3 解説とカスタマイズ