var a=5; var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); a=a+10; res.end(""+a); }).listen(1337, '127.0.0.1'); console.log('http://127.0.0.1:1337/');