Skip to content

Latest commit

 

History

History
 
 

debugger

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

StackDriver Debugger sample for Node.js

This sample demonstrates StackDriver Debugger with Node.js.

Setup

Before you can run or deploy the sample, you need to do the following (where appropriate, replace YOUR_PROJECT_ID with the ID of your Cloud project):

  1. Refer to the appengine/README.md file for instructions on running and deploying.

  2. Set the GCLOUD_PROJECT environment variable:

    Linux:

     export GCLOUD_PROJECT=your-project-id
    

    Windows:

     set GCLOUD_PROJECT=your-project-id
    

    Windows (PowerShell):

     $env:GCLOUD_PROJECT="your-project-id"
    
  3. Acquire local credentials for authenticating with Google Cloud Platform APIs:

    gcloud auth application-default login
    
  4. Configure git to use gcloud SDK:

    git config credential.helper gcloud.sh
    
  5. Add your Cloud Source Repository as a git remote:

    git remote add google https://source.developers.google.com/p/YOUR_PROJECT_ID/r/default
    
  6. Commit and push the code into the Cloud Source Repository:

    git add -A && git commit -m "Initial commit" && git push --all google
    
  7. Install dependencies:

    With npm:

    npm install
    

    or with yarn:

    yarn install
    

Running locally

With npm:

npm start

or with yarn:

yarn start

Deploying to App Engine

With npm:

npm run deploy

or with yarn:

yarn run deploy

Use the Stackdriver Debugger dashboard to inspect runtime data of the app.

Running the tests

See Contributing.