Skip to content

Commit 6d585f4

Browse files
committed
Clarified purpose of HTTP spike
1 parent 93ffa88 commit 6d585f4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

spikes/node_http/http_server.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
// Copyright (c) 2012 Titanium I.T. LLC. All rights reserved. See LICENSE.txt for details.
22

3+
// This is a simple spike of Node's HTTP module. The goal was to show
4+
// how to serve a very simple HTML page using Node.
5+
// It's not robust and it reflects a very basic understanding of node; use it
6+
// as a starting point, not a production-quality example.
7+
8+
39
var http = require("http");
410

511
var server = http.createServer();

0 commit comments

Comments
 (0)