node.js /socket.io/socket.io.js not found
Copying socket.io.js to a public folder (something as resources/js/socket.io.js) is not the proper way to do it. If Socket.io server listens properly to your HTTP server, it will automatically serve the client file to via http://localhost:<port>/socket.io/socket.io.js, you don’t need to find it or copy in a publicly accessible folder as resources/js/socket.io.js & serve it manually. … Read more