Marcus Kirsch
Marcus Kirsch

Reputation: 87

OpenShift socket.io : express deprecated app.configure: Check app.get('env')

After setting client and server side of socket.io, what I think are the right links, now something else sprung up.

My assumption is - I am using an old express version or one that is too new for the code I have?

DEBUG: Program node server.js exited with code 0 
DEBUG: Starting child process with 'node server.js' Tue, 29 Jul 2014 13:51:04 GMT express deprecated app.configure: Check app.get('env') in an if statement at server.js:11:5 info: socket.io started warn: error raised: Error: listen EACCES 
DEBUG: Program node server.js exited with code 0 
DEBUG: Starting child process with 'node server.js' Tue, 29 Jul 2014 13:51:06 GMT express deprecated app.configure: Check app.get('env') in an if statement at server.js:11:5 info: socket.io started warn: error raised: Error: listen EACCES 

Any guidance?

Upvotes: 3

Views: 3926

Answers (1)

fuelusumar
fuelusumar

Reputation: 797

For the deprecated function app.configure just use app.use without using app.configure, and for the error Error: listen EACCES check if you have anything listening in the port you are trying to start your server.js

Upvotes: 4

Related Questions