Prefer PORT env for auto listening

pull/287/head
Amio 2019-06-10 01:18:07 +08:00
rodzic 776aee8cce
commit afa9146bc8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -67,7 +67,7 @@ const server = http.createServer(async (req, res) => {
// Auto run
if (require.main === module) {
server.listen(3000)
server.listen(process.env.PORT || 3000)
}
process.on('unhandledRejection', e => {