मैंने सरल नोड.जेएस एप्लिकेशन (स्रोत कोड यहां से https://azure.microsoft.com/en-us/blog/visual-studio-code-and-azure-app-service-a-perfect-fit/ ) बनाया
var http = require('http');
http.createServer(function (req, res) {
console.log('Got request for ' + req.url);
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('<h1>Hello Code and Azure Web Apps!</h1>');
}).listen(process.env.PORT);
और लॉन्च किए गए VSCode लॉन्च पर क्लिक किया। json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/app.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
और अभी भी लॉन्च होने पर मैं देखता हूं:
गुण 'कार्यक्रम' मौजूद नहीं है।
क्या कोई गलत मदद कर सकता है?
"program": "${workspaceRoot}/app.js",
त्रुटि पैदा करने वाली रेखा है; इस पंक्ति द्वारा संदर्भित js फ़ाइल मौजूद नहीं है।