Minimum Viable Server

In Node, the easiest way to generate a server is:

    var http = require('http');
    http.on('', function(){ });