Hi, Do you know if it would be useful for me to try converting the jbnc code into a class, ``` class jBNC { constructor() { // Track IRC (Server) Connections this.connections = {}; } init(){ } doServer() { } clientReconnect(socket) { } clientConnect(socket) { } } new jBNC(); ``` or is it pointless ?