UNPKG

node-api-template

Version:
9 lines (6 loc) 199 B
const app = require('./app'); const { log } = require('./utils/logger'); const PORT = process.env.PORT || 5000; app.listen(PORT, () => { log(`Server is running on http://localhost:${PORT}`); });