I'm migrating an app to Node 12. It still uses the npm module "spdy" to make HTTP/2 available to Express.
Unfortunately, "spdy" doesn't run on Node 12:
So I decided to give Node.js's HTTP/2 module a chance (reducing the amount of dependencies is mostly good) and found that Express doesn't work with Node.js's HTTP/2 module.
After inspecting the activity on Express I'm wondering how I could miss that it's abandoned. Does anyone know if it's abandoned and why and in favor of which framework (I assume koa)?