У меня есть индекс . html и приложение. js nodejs. У меня есть переменная в приложении. js это имя, и я хочу напечатать эту переменную в моем индексе. html page
Код
var name = "Utsav";
var HTTP = require('HTTP');
var fs = require('fs');
function onRequest(req, res){
fs.readFile('index.html', function(err, data) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.write(data);
res.end();
});
}
<html lang="en">
<head>
<title>Enter your request</title>
</head>
<body>
<label for="Name:">Name</label><br>
<input type="text" id="req"><br>
</body>
Я хочу, чтобы значение имени из приложения. js печаталось в текстовом поле в индексе. html