Files

9 lines
211 B
JavaScript
Raw Permalink Normal View History

2022-09-08 08:58:39 -07:00
import Server from './bin/server.js'
const server = new Server()
process.on('unhandledRejection', (reason, promise) => {
console.log(`Handling ${reason.code} error. stack: `, reason)
})
server.startServer()