Opening port on mac os x (mavericks) for nodejs

3

I am running a node.js app locally and would like to make it available for demo for outside world. It is running on port 3000.

I have added node to the firewall to allow incoming connections but still it is not possible to open connection to port 3000 from outside. It works locally though (i.e. localhost:3000).

user3111525

Posted 2014-01-13T15:17:59.333

Reputation: 145

By 'from outside', do you mean over the local network or from the Internet? For the case of a request from the Internet (i.e. behind a NAT), you may need to set up port forwarding. – yjwong – 2014-01-13T20:47:13.943

@yjwong from the internet. – user3111525 – 2014-01-14T01:14:32.970

Have you done port forwarding? – yjwong – 2014-01-18T19:28:55.977

No answers