NozeIO / MicroExpress

A micro web server framework on top of Swift NIO
http://www.alwaysrightinstitute.com/microexpress-nio2/
126 stars 14 forks source link

Allow MicroExpress to listen on a socket file instead of a port. #4

Closed jdrouet closed 5 years ago

jdrouet commented 5 years ago

I'd like to be able to do

let app = Express()

app.listen("/my/awesome/service.socket")

Like with the original express (due to node http module)

If this looks doable and interesting, I could take a look at it.

helje5 commented 5 years ago

That would be really cool! You would probably just have to add a related bootstrap to SwiftNIO first.

helje5 commented 5 years ago

Implemented in PR #5, thanks!