Issues (82)

Severity
1
'use strict';
2
3
const {app} = require('./app');
4
const port = process.env.PORT || 3000;
5
6
// Listen to the port 
7
app.listen(port, () => {
8
    console.log('server listening at port : ' + port);
0 ignored issues
show
console.log looks like debug code. Are you sure you do not want to remove it?
Loading history...
9
});
10