关闭这个http://socket.io服务。这个回调函数是可选的(可填可不填),这个回调函数将在所有连接被关闭后执行。
const Server = require('socket.io');
const PORT = 3030;
const server = require('http').Server();
const io = Server(PORT);
io.close(); // Close current server
server.listen(PORT); // PORT is free to use
io = Server(server);