0.7.0
- Made listen() accept identical arguments to the http.Server listen() method. This makes it possible to set the hostname or bind to a socket instead.
strata.listen(8080, callback);
strata.listen(8080, '127.0.0.1', callback);
strata.listen(8080, '0.0.0.0', callback);