You probably shouldn't run Node as root. Either use authbind or
forward traffic from port 80 to some unprivileged port and have your
app listen on that. Example:
$ sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT
--to-port 8080
$ forever start -c node app.js