Getting started

By `Karol Kaczmarek`_

Here’s how to get started

Table of topics:

View or download sample from GitHub.

First Topic

Description for first topic

"test1": {
    "test1": { }
},

Second Topic

Description for second topic.

"test2": {
    "foo1":{}
    "foo2":{}
    "foo3":{}
},

Creating HTTP server

Description for third topic.

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/');