herokuでnode.jsを動かすときのポート指定

http://stackoverflow.com/questions/15693192/heroku-node-js-error-web-process-failed-to-bind-to-port-within-60-seconds-of
ポートは動的に割り振られるので決め打ちではなく
以下のようにする

.listen(process.env.PORT || 5000)