Request&Response Objects
Request&Response Objects
res.send("User Request");
});
Explanation of the Code
Example:
var express = require('express');
var app = express();
app.listen(80);
// Set headers
res.set({
'Content-Type': 'text/html',
'Content-Length': response.length
});