Question
By refactoring our routes do we create less work for the app?
Answer
No, neither less nor more, it might take a few milliseconds longer to respond, since it has to reach into more than just one file, but nothing that would really affect the user, but that is not really more work for the app is just a minor increase in the app’s response time.
The most important gain from refactoring is that it makes the app more manageable and scalable, which will lead to a way smaller margin of error, aka fewer bugs to deal with and the ones that would linger, will become easier to spot since we are handling smaller files.