blob: 81e11c1d0f8faab32037bea1db4bb3e8371663c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
var http = require('http');
const content =
'<!DOCTYPE html>' +
'<html lang="en">' +
'<body style="width:10000px; height:10000px">' +
'</body>' +
'</html">' ;
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end(content);
}).listen(11111, '127.0.0.1');
|