Last Updated: February 25, 2016
·
707
· tralamazza

Give low port permission to your node apps

Don't just sudo this or sudo that, when all you want is to listen on low ports (usually < 1024). Use linux capabilities instead:

sudo setcap cap_net_bind_service=+ep `which node`