Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7686103
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:24:12+00:00 2026-05-31T19:24:12+00:00

I am trying to connect many socket.io clients for different URLs in Node.js like

  • 0

I am trying to connect many socket.io clients for different URLs in Node.js like so :

app.get('/:id',function(req,res){
io.of('/'+id).on('connection',function(socket){
    socket.emit('hello');

})
});

This works however there is a problem :

When a browser refreshs the page http://localhost:3000/xyz for example, the event socket.emit gets fired two times.

If someone accesses the page http://localhost:3000/xyz 10 times, then the event fires 10 times.

This is not good because everytime the user visits that page, the socket events will be fired n+1 times.

What should be done so that I can register sockets to different URLs and at the same time not have this anomaly .

Another thing :

If I do this :

var sock;

io.of('/'+xyz).on('connection',function(socket){
    sock=socket;

})


app.get('/:id',function(req,res){
    sock.emit('hello');

})

If I use the above code then the socket doesn’t get saved succesfully to the sock variable in time. What that means is , I have to do a setInterval of about 1000 .. so that the

sock=socket 

line gets fired.

Please help me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T19:24:13+00:00Added an answer on May 31, 2026 at 7:24 pm

    Because with this, in each request to http://localhost:3000/id, you register a new handler, you should be doing that once, not at every request.

    app.get('/:id',function(req,res){
        io.of('/'+id).on('connection',function(socket){
            socket.emit('hello');
    
        })
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Essentially Im trying to get many many java clients connect to a socket on
While trying to connect to a database that's set to read only, the connection
I am trying to build a server which can serve for many clients. The
I'm trying to get socket.io set up and I'm running into what I'm 90%
I'm trying to connect from a pocket pc app (windows mobile 6) to a
Im trying to connect a Information object to many Customers (see code below) When
I was trying to convert the connect by level function of oracle to teradata.
When trying to connect to an ORACLE user via TOAD (Quest Software) or any
I am trying to connect to a Microsoft SQL 2005 server which is not
I am trying to connect to 2 databases on the same instance of MySQL

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.