For an Express App, I need to temporarily change PORT
for my App:
var port = process.env.PORT || 8080;
app.listen(port)
I have already read the following StackOverflow question but it is not working for me:
How to change value of process.env.PORT in node.js?
OS: Ubuntu 14.04