Node

Javascript Runtime Environment

VSCode Remote Debug Node in docker container

Run node with the debugging port 9229:

node --inspect=0.0.0.0:9229 dist/index.js

Configure VSCode with remote launch config

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "attach",
            "name": "Attach to FoodPreparation container",
            "address": "localhost",
            "port": 9229
        }
    ]
}