Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

426
Views
socket.io - Failed to load resource: net::ERR_CONNECTION_REFUSED

I'm building a forum where two users after connections can post a status then comment on them. For comments, i used socket.io .

In console i'm getting this error each few seconds :

Failed to load resource: net::ERR_CONNECTION_REFUSED
GET http://localhost/socket.io/?EIO=4&transport=polling&t=O05nump net::ERR_CONNECTION_REFUSED

How to fix this error ?


I installed express, nodemon and socket.io in my socket server:

  • Socket server:

package.json

{
"name": "socket",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
  "express": "^4.17.3",
  "nodemon": "^2.0.15",
  "socket.io": "^4.4.1"
  }
}

app.js

const io = require("socket.io")(4000, {
cors: {
    origin: "http//localhost:3000",
},
});


io.on('connection', (socket) => {
  console.log('A new user is connected !');
})
io.on('disconnect', () => {
  console.log('User has left !');
});

  • Front:

Also, i installed socket.io-client in client (front), then in my web page, i added this code :

import { io } from 'socket.io-client'
export default () => {

  //implement socket
  const socket = useRef()

  useEffect(() => {
      socket.current = io("ws://localhost/4000")
  }, [])

return (
  //some html code
)
}

  • My project tree:

Project Forum

├── back     
├── client
   └──index.jsx
└── socket
   └──package.json
   └──app.js

  • Console Visual Studio Code: Visual studio code's console shows this only how many times i refresh browser or ctrl+S the code:

    [nodemon] starting 'node apde app.js'
    
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You added a slash instead of semi-colon:
socket.current = io("ws://localhost:4000")

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!