This sample demonstrates StackDriver Debugger with Node.js.
Where appropriate, replace [YOUR_PROJECT_ID]
with the ID of your Cloud project.
-
git clone https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git
-
cd nodejs-docs-samples/debugger
-
Initialize a new git repository:
git init
-
Configure git to use gcloud SDK:
git config credential.helper gcloud.sh
-
Add your Cloud Source Repository as a git remote:
git remote add google https://source.developers.google.com/p/[YOUR_PROJECT_ID]/r/default
-
Commit and push the code into the Cloud Source Repository:
git add -A && git commit -m "Initial commit" && git push --all google
-
Deploy the app:
gcloud app deploy
-
View the deployed app at https://[YOUR_PROJECT_ID].appspot.com/.
-
Use the StackDriver Debugger dashboard to inspect runtime data of the app.