기본 node.js 프로젝트의 "속성 '프로그램'이 존재하지 않습니다."
간단한 node.js 응용 프로그램을 만들었습니다 ( 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 생성 launch.json : { "version": "0.2.0", "configurations": [ { "name": "Launch", "type": "node", …