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?
"socket.io": "0.6". That doesn't work either. – Juzer Ali Mar 29 '12 at 22:01