Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I use socket.io with node.js server, I usually use the following code (from the socket.io official site).

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io.connect('http://localhost:3023');
  socket.on('news', function (data) {
    console.log(data);
    socket.emit('my other event', { my: 'data' });
  });
</script>

as you see, I'm hard coding my server ip with port number. Is there a way to set a variable in node.js server then use the variable on my client side code?

For now, I'm using cookie.

share|improve this question

2 Answers

There are two basic options actually. If your socket.io client runs on the same address as your page, use:

io.connect(document.location.href);

Or, you can use a template engine to inject data from the server to the client page.

share|improve this answer

In recent versions of Socket.IO, you can just call io.connect() and it will auto-discover the URL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.