{
"version": "0.2.0",
"configurations": [{
"name": "attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "x.x.x.x",
"restart": true,
"sourceMaps": false,
"outFiles": [],
"localRoot": "${workspaceRoot}",
"remoteRoot": "/views/"
}]
}
在服务器上
[root@tri ~]# node --debug /usr/appfolder/views/index.js
Debugger listening on [::]:5858
Example app listening at http://:::5000
通过ngnix,index.js和css代码都可以在服务器外部访问世界。
但是Visual Studio Code没有看到要通过调试的index.js。 我需要在VPS上通过远程代码进行调试。
谢谢