Express on Node.js
var app = express.createServer(); app.get('/', function(req, res){ res.send('Hello World'); }); app.listen(3000);