Update server.ts

This commit is contained in:
Eugene Pankov 2021-07-25 17:15:13 +02:00
parent 06ad161e68
commit 7f94d85d67
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -39,6 +39,7 @@ function start () {
res.render('index', { req }) res.render('index', { req })
}) })
process.umask(0o002)
app.listen(PORT, () => { app.listen(PORT, () => {
console.log(`Node Express server listening on http://localhost:${PORT}`) console.log(`Node Express server listening on http://localhost:${PORT}`)
}) })