We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4cd9b0 commit 57a0f7dCopy full SHA for 57a0f7d
server.js
@@ -0,0 +1,7 @@
1
+var util = require('util'),
2
+ connect = require('connect'),
3
+ port = 1337;
4
+
5
+connect.createServer(connect.static(__dirname)).listen(port);
6
+util.puts('Listening on ' + port + '...');
7
+util.puts('Press Ctrl + C to stop.');
0 commit comments