I have started a new tiny project.
I installed express.
Have www folder
have index.html file with this
my local server
server working
just put your html,css, js files here and it work on your own local nodejs server
have server.js
var express = require('express'); var app = express();
app.use(express.static(__dirname + '/www'));
app.listen('3000'); console.log('working on 3000');
On VS code, while running unity C# and pressing F5 is requested to select environment.
in JS I immediately get an error "cannot find program to debug", as well as when I press ctrl+F5 (run without debugging).
I see that here someone asked a similar question regarding python, but wasn't answered either. VSC debugger not working
help anyone?