Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I deployed a nodejs app using express and nowjs on nodester. I installed the packages using standard nodester api nodester npm install appname package-name. Also I installed local (Windows 7) versions of packages and registered them in .gitignore. My chat app runs fine on local but doesn't run online i.e. on http://dlq.nodester.com

I can see following errors in my javascript console:

GET http://dlq.nodester.com/socket.io/1/?t=1333056376218 404 (Not Found) socket.io.js:1628
Socket.handshake socket.io.js:1628
Socket.connect socket.io.js:1667
Socket socket.io.js:1526
io.connect socket.io.js:91
scriptLoaded

This is my package.json

{
    "name": "application-name"
  ,  “node”:”v0.6.12”,
  , "version": "0.0.1"
  , "private": true
  , "dependencies": {
      "express": "2.5.8"
    , "jade": ">= 0.0.1"
    , "now": "*"
    , "socket.io: "*"
  }
}

I have also installed socket.io on my nodester instance. Any ideas what could be causing this error?

share|improve this question
Also tried "socket.io": "0.6". That doesn't work either. – Juzer Ali Mar 29 '12 at 22:01
Please provide your clientside js file for connecting to socket.io, also you might want to put the html of your index file ( where you load the client socket io script ). If it's not too late and you've got your question answered! – drinchev Apr 6 at 11:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.