moleculerjs / moleculer-web

:earth_africa: Official API Gateway service for Moleculer framework
http://moleculer.services/docs/moleculer-web.html
MIT License
292 stars 118 forks source link

Route path name clash #306

Open mikegin opened 2 years ago

mikegin commented 2 years ago

Creating two routes one with path /test and the other with path /test2

Make sure the /test route comes before the /test2 route in the routes array.

Then curl <BASE_URL>/test2 will match /test due to url.startsWith(route.path) in the rest request handler.