Skip to content

0.7.0

Compare
Choose a tag to compare
@brianreavis brianreavis released this 06 Mar 19:31
· 162 commits to master since this release
  • 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);