ich habe eine index.html und eine helloworld.js
die helloworld.js sieht so aus:
var express = require('express'); var app = express();
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.get('/test', function (req, res) {
console.log('works');
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
ich kann node helloworld.js machen was auch geht. aber wie schaff ich es dass meine index.html ebenfalls auf localhost:300/bla gestartet wird so dass die komunikation funktioniert?