http.createServer(function (req, res) {
  req.on('end', function () {
    res.end('Hello world!')
  })
}).listen(9003)