is it possible to make nodejs script listen to same port(80) just like php.
For php, it should be www.abc.com/script1.php
www.abc.com/script2.php
equal to
www.abc.com:80/script1.php
www.abc.com:80/script2.php
but for nodejs script(script1.js, script2.js), how to set parameters to make multi scripts listening to 80 and processing related script when get the requests?
Your comment welcome