Well title says most of it.
I was just reading net.Server
class in node js , and i already know about socket.io
, it seems like net.server
class provides direct access to tcp layer , and we can implement sockets directly using this net.server
class , so is socket.io
also written using it ?
Or is it written on UDP/Datagram Sockets class:dgram.Socket
?
Thanks