Skip to content

Instantly share code, notes, and snippets.

@icodejs
Last active May 19, 2021 14:02

Revisions

  1. icodejs revised this gist May 19, 2021. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion express-app-launch.json
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    "configurations": [
    {
    "type": "pwa-node",
    "name": "Attach to node",
    "name": "Attach to existing process",
    "skipFiles": ["<node_internals>/**"],
    "request": "attach",
    "restart": true,
  2. icodejs revised this gist May 19, 2021. 1 changed file with 0 additions and 3 deletions.
    3 changes: 0 additions & 3 deletions express-app-launch.json
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,4 @@
    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
  3. icodejs revised this gist May 19, 2021. 1 changed file with 23 additions and 0 deletions.
    23 changes: 23 additions & 0 deletions express-app-launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
    "type": "pwa-node",
    "name": "Attach to node",
    "skipFiles": ["<node_internals>/**"],
    "request": "attach",
    "restart": true,
    "port": 9229
    },
    {
    "type": "pwa-node",
    "request": "launch",
    "name": "Launch Program",
    "skipFiles": ["<node_internals>/**"],
    "program": "${workspaceFolder}/bin/www"
    }
    ]
    }
  4. icodejs revised this gist Oct 25, 2019. 1 changed file with 0 additions and 3 deletions.
    3 changes: 0 additions & 3 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,4 @@
    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
  5. icodejs created this gist Oct 18, 2019.
    17 changes: 17 additions & 0 deletions launch.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    {
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
    "type": "node",
    "request": "attach",
    "autoAttachChildProcesses": true,
    "name": "9229",
    "cwd": "${workspaceFolder}",
    "port": 9229,
    "protocol": "auto"
    }
    ]
    }