summaryrefslogtreecommitdiff
path: root/doc/api/synopsis.markdown
blob: 10f4f021356fa275ef3a955d58695f02c8e925df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Synopsis

<!--type=misc-->

An example of a [web server](http.html) written with io.js which responds with
'Hello World':

    var http = require('http');

    http.createServer(function (request, response) {
      response.writeHead(200, {'Content-Type': 'text/plain'});
      response.end('Hello World\n');
    }).listen(8124);

    console.log('Server running at http://127.0.0.1:8124/');

To run the server, put the code into a file called `example.js` and execute
it with the iojs program

    > iojs example.js
    Server running at http://127.0.0.1:8124/

All of the examples in the documentation can be run similarly.