Skip to main content

Forwarding ports in your codespace

You can forward ports in your codespace to test and debug your application. You can also manage the port protocol and share the port within your organization or publicly.

About forwarded ports

Port forwarding gives you access to TCP ports running within your codespace. For example, if you're running a web application on a particular port in your codespace, you can forward that port. This allows you to access the application from the browser on your local machine for testing and debugging.

Note

To learn more about GitHub CLI, see About GitHub CLI.

To forward a port use the gh codespace ports forward subcommand. Replace codespace-port:local-port with the remote and local ports that you want to connect. After entering the command choose from the list of codespaces that's displayed.

gh codespace ports forward CODESPACE-PORT:LOCAL-PORT

For more information about this command, see the GitHub CLI manual.

To see details of forwarded ports enter gh codespace ports and then choose a codespace.

Sharing a port

Note

You can only make a port private to an organization if your organization uses GitHub Team or GitHub Enterprise Cloud.

If you want to share a forwarded port with others, you can either make the port private to your organization or make the port public. After you make a port private to your organization, anyone in the organization with the port's URL can view the running application. After you make a port public, anyone who knows the URL and port number can view the running application without needing to authenticate.

Note

Your choice of port visibility options may be limited by a policy configured for your organization. For more information, see Restricting the visibility of forwarded ports.

To change the visibility of a forwarded port, use the gh codespace ports visibility subcommand. There are three visibility settings:

  • private - Visible only to you. This is the default setting when you forward a port.
  • org - Visible to members of the organization that owns the repository.
  • public - Visible to anyone who knows the URL and port number.

Replace codespace-port with the forwarded port number. Replace setting with private, org, or public. After entering the command choose from the list of codespaces that's displayed.

gh codespace ports visibility CODESPACE-PORT:SETTINGS

You can set the visibility for multiple ports with one command. For example:

gh codespace ports visibility 80:private 3000:public 3306:org

For more information about this command, see the GitHub CLI manual.

Using command-line tools and REST clients to access ports

When you forward a port, your application becomes available at the URL https://CODESPACENAME-PORT.app.github.dev. For example, https://monalisa-hot-potato-vrpqrxxrx7x2rxx-4000.app.github.dev. If you forward a private port from the VS Code desktop application, your application will also be available at a localhost port such as 127.0.0.1:4000.

To access your application using a REST client, such as Postman, or a command-line tool like curl, you don't need to authenticate if you're using a localhost port, or if you're accessing a public port at the remote domain. However, to connect to a private port at the remote domain, you must authenticate by using the GITHUB_TOKEN access token in your request.

Note

The GITHUB_TOKEN is automatically created when you start a codespace and remains the same for the duration of the codespace session. If you stop and then restart a codespace a new GITHUB_TOKEN is generated.

Finding the address to connect to

To find the address for a forwarded port, enter gh codespace ports. If you have more than one codespace, select the appropriate codespace from the list that's displayed.

Copy the address and paste it somewhere for later use.

Finding the GITHUB_TOKEN

  1. Start an SSH session for your codespace.

    gh codespace ssh
    
  2. If you have more than one codespace, select the appropriate codespace from the list that's displayed.

  3. Display the GITHUB_TOKEN.

    echo $GITHUB_TOKEN
    

    The token is a string beginning ghu_.

  4. Copy the token.

    Important

    Don't share this access token with anyone.

  5. Exit the SSH session.

    exit
    

Using curl to access a forwarded port

In a terminal on your local computer, enter:

curl ADDRESS -H "X-Github-Token: TOKEN"

Replace ADDRESS and TOKEN with the values you copied previously.

Using Postman to access a forwarded port

  1. Open Postman.

  2. Create a new GET request.

  3. Paste the address you copied previously as the request URL.

    Screenshot of the URL for the forwarded port, pasted into Postman as the GET request URL. The URL is highlighted.

  4. In the Headers tab, create a new entry where the key is "X-Github-Token" and the value is the GITHUB_TOKEN you copied previously.

    Screenshot of a dummy GITHUB_TOKEN, pasted into Postman as the value of the X-GitHub-Token key. The key and value are highlighted.

  5. Click Send.

Automatically forwarding a port

You can add a forwarded port to the GitHub Codespaces configuration for the repository, so that the port will be automatically forwarded for all codespaces created from the repository. After you update the configuration, any previously created codespaces must be rebuilt for the change to apply. For more information about the dev container configuration file, see Introduction to dev containers.

  1. In your codespace, open the dev container configuration file you want to update. Typically this file is .devcontainer/devcontainer.json.

  2. Add the forwardPorts property.

    "forwardPorts": [NUMBER],
    

    Replace NUMBER with the port number you want to forward. This can be a comma-separated list of port numbers.

  3. Save the file.

Labeling a port

When you open a codespace in the browser, or in the VS Code desktop application, you can label a forwarded port to make it easier to identify in a list.

  1. Open the terminal in your codespace.

  2. Click the PORTS tab.

  3. Right-click the port you want to label, then click Set Port Label.

    Screenshot of the pop-up menu for a forwarded port, with the "Set Port Label" option highlighted with an orange outline.

  4. Type a label for your port, then press Enter.

    Screenshot of the label "Staging" added as a custom label for a forwarded port.

Automatically labeling a forwarded port

You can label a port and write the change to a dev container configuration file for the repository. If you do this for a port that is automatically forwarded, using the forwardPorts property, then the label will be automatically applied to that forwarded port for all future codespaces created from the repository using that configuration file.

  1. Open the terminal in your codespace.

  2. Click the PORTS tab.

  3. Right-click the port whose label attribute you want to add to the codespace configuration, then click Set Label and Update devcontainer.json.

    Screenshot of the pop-up menu for a forwarded port, with the "Set Label and Update devcontainer.json" option highlighted with an orange outline.

  4. Type a label for your port, then press Enter.

    Screenshot of the label "Staging" added as a custom label for a forwarded port.

  5. If your repository has more than one dev container configuration file, you will be prompted to choose which file you want to update.

    The dev container configuration file is updated to include the new label in the portsAttributes property. For example:

    // Use 'forwardPorts' to make a list of ports inside the container available locally.
    "forwardPorts": [3333, 4444],
    
    "portsAttributes": {
      "3333": {
        "label": "app-standard-preview"
      },
      "4444": {
        "label": "app-pro-preview"
      }
    }
    

Seeing port labels on the command line

You can see the port labels when you list the forwarded ports for a codespace. To do this, use the gh codespace ports command and then select a codespace.