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
console.log("Server running on %s", server.info.uri);
608
+
})();
609
+
610
+
process.on("unhandledRejection", (err) => {
611
+
console.log(err);
612
+
process.exit(1);
613
+
});
614
+
```
615
+
616
+
### Koa
617
+
618
+
Soon...
619
+
543
620
### Fastify
544
621
545
622
Fastify interop will require the use of `fastify-express` instead of `middie` for providing middleware support. As the authors of `fastify-express` recommend, this should only be used as a stopgap while full Fastify support is worked on.
0 commit comments