You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(start): fixed callback and options combinations on start
server.start()
All of the below now work correctly:
server.start({ port: 5000 })
server.start({ port: 5000 }, ({ port }) =>
console.log(`server started on port ${port}`))
server.start(({ port }) => console.log(`server
started on port ${port}`))
Closes#88
0 commit comments