I'm not sure it's what you want, but yes, a single node process can listen
on any number of ports.

You can even have the same exact request handler function service all those
ports.

    var http = require('http');
    http.createServer(onRequest).listen(3000);
    http.createServer(onRequest).listen(3001);

    function on request(req, res) { ... }
On Feb 10, 2014 12:48 PM, "Arman Didandeh" <arman.didan...@gmail.com> wrote:

> Dear all,
>
> I am a newbie when it comes to node.js, so I need your help towards
> running multiple instances of my node.js server on my machine.
>
> I do not want to use other tools that manage this and prefer to do the
> confing to learn more.
>
> Also  I do not need to assign each of these instances to a core (as I have
> seen is very popular in discussion forums).
>
> All I need is for my local machine (which is acting as the server during
> the development phase), to be able to listen to different ports. This way
> myself and other developers can test their changes in code through these
> connections and once everything is stable, each person could commit to our
> git repo. Also the same machine is working as the actual server for current
> users so it is probably using port 80.
>
> Thanks in advance for your helps.
>
> Cheers all,
> Arman
>
> --
> --
> Job Board: http://jobs.nodejs.org/
> Posting guidelines:
> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
> You received this message because you are subscribed to the Google
> Groups "nodejs" group.
> To post to this group, send email to nodejs@googlegroups.com
> To unsubscribe from this group, send email to
> nodejs+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>
> ---
> You received this message because you are subscribed to the Google Groups
> "nodejs" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to nodejs+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to nodejs+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to