Hi guys!
Got a quick question for you. We're trying to set up a machine with Derby at the office, and have been working at getting the Chat example application running. We seem to have everything loaded up and running... node works, mongo works, express and all the dependencies like racer and connect-mongo are loaded. We get it started without errors and it gives us the 'Go to:
http://localhost:3002' message, but when we navigate from another machine to the server, we get nothing. Firewalls have been checked, network interfaces are up, database is running, server.js is running. Everything looks okay. But we get nothing.
I've been thinking that the 'localhost' message is the culprit, and that we need to replace 'localhost' somewhere with our servers's IP address. In the example node.js applications, the pattern is 'server.listen(3002, '192.168.0.101')' and so I've been looking for a place where the IP address is specified. But I'm not seeing anything like that with the ExpressApp = express().use(yada, yada, yada) syntax. And looking through the Express documentation, it looks like the IP address is taken care of automatically.
Are we missing something here? Any suggestions on what we might be doing wrong? Any ideas?
Thanks in advance!
Abigail