fix: listening on port undefined (#19)

If PORT is not defined in .env, console.log("Listening on port "
+ process.env.PORT) will display "Listening on port undefined".
main
Willyanto 3 years ago committed by GitHub
parent 7fab5e7fd0
commit 0a3fc7c3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -38,9 +38,11 @@ app.use(function(req, res, next) {
.send('Not Found');
});
const port = process.env.PORT || 3000;
//Start our server and tests!
app.listen(process.env.PORT || 3000, function () {
console.log("Listening on port " + process.env.PORT);
app.listen(port, function () {
console.log("Listening on port " + port);
if(process.env.NODE_ENV==='test') {
console.log('Running Tests...');
setTimeout(function () {

Loading…
Cancel
Save