There is a problem with express 5+, it's using path-to-regexp library, and they changed the rules. Instead of using:
.get('/**', xxxx) / .get('/*', xxxx)
Use this workaround:
.get('/*\w', xxxx)