Closed cdaringe closed 7 years ago
var server = http.createHttpServer()
var server = http.createServer(handler)
didn't run the code, just casually reading :)
@cdaringe woooooops! you're right, it should be http.createServer(handler) 🙊 If you want to PR this in, you're totally welcome ✨
http.createServer(handler)
Fixed in 58d1e96 :sparkles: - thanks for reporting!
problem statement
var server = http.createHttpServer()
:eyes:solution
var server = http.createServer(handler)
, i think?didn't run the code, just casually reading :)