We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3de71a commit 04ebfe9Copy full SHA for 04ebfe9
test/node/options/app.js
@@ -0,0 +1,4 @@
1
+require('http').createServer({keepAlive: true}, function (req, res) {
2
+ res.writeHead(200, {'Content-Length': 12, 'Content-Type': 'text/plain'})
3
+ .end('Hello World\n');
4
+}).listen(8080);
0 commit comments