具有socket.io的Node js子域

时间:2019-07-01 07:17:07

标签: node.js express socket.io subdomain

我想获得一个与this answere一起工作的子域,但是我目前在我的网站上有socket io,但我不知道如何正确设置它。
这是我的代码:

var app = require('express')();
var http = require('http').createServer(app);
var io = require('socket.io')(http);


app.get('/', function (req, res) {
    res.sendFile(__dirname + '/Main/index.html');
});


.......


http.listen(3000, function () {
    console.log('listening on *:3000');
});

我需要在哪里放置虚拟主机,因为我在这里有一个http对象,并用它来构造一个侦听器。

0 个答案:

没有答案