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