I don't think we have https.createServer yet.
The new "web" module I'm working on is transport agnostic. If you give it a tls stream in continuable stream format, it will provide an https server.
If you prefer the interface in the 'http' module (copied from nodejs), it shouldn't be hard to add https.createServer. Basically create a server with `require('tls').createServer` instead of `require('net').createServer` and it will be https (I think).
Hello Tim,
thanks for you're fast answer. I will try both web and http. Is there a special path where the "web" module have to be installed in?
Regards, Andrey