Skip to content

Commit 04ebfe9

Browse files
committed
Add test file to start node application with options
1 parent f3de71a commit 04ebfe9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/node/options/app.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)