2020年4月6日 星期一

[NodeJs]debug launch.json 設定 啟動 及 chrome F5 自動起動 開發環境

        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "program": "${workspaceRoot}/app.js"
        },
        {
            "type": "chrome",
            "request": "launch",
            "name": "Client",
            "url": "http://localhost:3000",
            "webRoot": "${workspaceFolder}/app.js"
        }