I created a simple application in node.js
var app = require("express");
var express = express();
app.get("/", function(req, res){
res.send("Hello");
});
app.listen(3000);
and the launch.json file:
{
"version": "0.2.0",
"configu...
asked by
22.05.2018 / 16:06