A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
310 B
15 lines
310 B
7 years ago
|
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');
|