Sha256: ec65f192dd7aa3d31665b708dd53f485f78f723290cb8390b8c1564be04056c3

Contents?: true

Size: 279 Bytes

Versions: 24

Compression:

Stored size: 279 Bytes

Contents

/* Run with: node hello_node.js */

var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/plain'});
      res.end('Hello World\n');
}).listen(1337, "127.0.0.1");
console.log('Server running at http://127.0.0.1:1337/');

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
reel-0.6.1 benchmarks/hello_node.js
reel-0.6.0 benchmarks/hello_node.js
reel-0.6.0.pre5 benchmarks/hello_node.js
reel-0.6.0.pre4 benchmarks/hello_node.js
reel-0.6.0.pre3 benchmarks/hello_node.js
reel-0.6.0.pre2 benchmarks/hello_node.js
reel-0.6.0.pre1 benchmarks/hello_node.js
reel-0.5.0 benchmarks/hello_node.js
reel-0.5.0.pre benchmarks/hello_node.js
reel-0.4.0 benchmarks/hello_node.js
reel-0.4.0.pre7 benchmarks/hello_node.js
reel-0.4.0.pre6 benchmarks/hello_node.js
reel-0.4.0.pre5 benchmarks/hello_node.js
reel-0.4.0.pre4 benchmarks/hello_node.js
reel-0.4.0.pre3 benchmarks/hello_node.js
reel-0.4.0.pre2 benchmarks/hello_node.js
reel-0.4.0.pre benchmarks/hello_node.js
reel-0.3.0 benchmarks/hello_node.js
reel-0.3.0.pre benchmarks/hello_node.js
reel-0.2.0 benchmarks/hello_node.js